/**
 * UIX Modern Design System - Denizli Dolunay Nakliyat
 * Version: 1.0.0
 * Description: Kurumsal, güven odaklı, erişilebilir ve modern tasarım
 * 
 * Accessibility: WCAG 2.1 AA Compliant
 * Mobile First Design
 */

/* ================================================
   CSS CUSTOM PROPERTIES (Variables)
   ================================================ */
:root {
    /* Primary Colors */
    --primary-color: #ed462f;
    --primary-dark: #c73a26;
    --primary-light: #ff6b55;
    
    /* Secondary Colors */
    --secondary-color: #0a172b;
    --secondary-dark: #050d18;
    --secondary-light: #1a2a4a;
    
    /* Trust Colors - Güven renkleri */
    --trust-blue: #2563eb;
    --trust-green: #059669;
    --trust-gold: #d97706;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* WhatsApp */
    --whatsapp-green: #25D366;
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Source Sans Pro', 'Roboto', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows - Yumuşak gölgeler */
    --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 -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Focus ring for accessibility */
    --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.5);
}

/* ================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================ */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    z-index: 100000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) 0;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Focus States - Improved visibility */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--trust-blue);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    box-shadow: var(--focus-ring);
    outline: none;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #c00;
        --secondary-color: #000;
    }
}

/* ================================================
   SEO-UYUMLU TYPOGRAPHY - Minimal Override
   Sadece küçük metinleri düzeltir, tema başlıklarına dokunmaz
   ================================================ */

/* Base Typography - Sadece body text için minimum 16px */
body {
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Paragraflar - SEO için 16px minimum */
p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1em;
}

/* Form input - iOS zoom önleme için 16px şart */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
    font-size: 16px !important; /* iOS zoom engeller */
}

/* ================================================
   HEADER ICON-BOX FIX - Taşma Düzeltmesi
   ================================================ */
.header .widget-icon-box {
    overflow: hidden;
}

.header .icon-box {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.header .icon-box__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.header .icon-box__subtitle {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 14px;
}

/* Tablet/küçük ekranlarda daha iyi görünüm */
@media (min-width: 768px) and (max-width: 1199px) {
    .header .icon-box {
        margin-right: 10px !important;
        padding-left: 10px !important;
    }
    
    .header .icon-box__title {
        font-size: 13px;
    }
    
    .header .icon-box__subtitle {
        font-size: 13px;
    }
    
    .header .icon-box .fa {
        font-size: 18px;
        margin-right: 5px;
    }
}

/* Header widgets container */
.header__widgets {
    overflow: hidden;
    max-width: 100%;
}

/* ================================================
   TRUST SECTION - Güven Bölümü
   ================================================ */
.trust-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, #fff 100%);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--trust-blue), var(--trust-green));
}

.trust-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.trust-header h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

.trust-header p {
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-badge i {
    font-size: 24px;
}

.trust-badge.badge-verified i {
    color: var(--trust-blue);
}

.trust-badge.badge-secure i {
    color: var(--trust-green);
}

.trust-badge.badge-experience i {
    color: var(--trust-gold);
}

/* ================================================
   TESTIMONIALS / MÜŞTERİ YORUMLARI - Modern Design
   ================================================ */
.testimonials-modern {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.testimonials-header .rating-summary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-top: var(--space-md);
}

.testimonials-header .rating-summary .stars {
    color: #fbbf24;
    font-size: 22px;
}

.testimonials-header .rating-summary span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* Testimonials Carousel Container */
.testimonials-carousel {
    position: relative;
    z-index: 1;
}

/* Horizontal Scroll Container for Mobile */
.testimonials-scroll {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--space-md) var(--space-sm);
    margin: 0 calc(-1 * var(--space-md));
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

/* Single Testimonial Card */
.testimonial-card {
    flex: 0 0 85%;
    max-width: 400px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-content {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    min-height: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.testimonial-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--trust-green);
    margin-top: 6px;
    font-weight: 500;
}

.testimonial-verified i {
    font-size: 16px;
}

/* Scroll Indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.scroll-indicator {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
    border: none;
    padding: 0;
    cursor: pointer;
}

.scroll-indicator.active,
.scroll-indicator:hover {
    background: #fff;
    width: 24px;
}

/* CTA Button in Testimonials */
.testimonials-cta {
    text-align: center;
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonials-cta .btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.testimonials-cta .btn-write-review:hover {
    background: #fff;
    border-color: #fff;
    color: var(--secondary-color);
}

/* Desktop Grid Layout */
@media (min-width: 768px) {
    .testimonials-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        margin: 0;
        padding: var(--space-md) 0;
    }
    
    .testimonial-card {
        flex: none;
        max-width: none;
    }
    
    .scroll-indicators {
        display: none;
    }
}

@media (min-width: 1024px) {
    .testimonials-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================================================
   SECTION SPACER - Bölümler Arası Boşluk
   ================================================ */
.section-spacer {
    height: 60px;
    clear: both;
    background: transparent;
}

/* Testimonials bölümünden sonra özel margin */
.testimonials-modern + .section-spacer {
    height: 80px;
}

/* OUR SERVICES bölümü düzeltmeleri */
#main-content > .container:first-of-type {
    margin-top: 40px;
    padding-top: 20px;
}

/* Jumbotron-overlap düzeltmesi - negatif margin'i sıfırla */
.testimonials-modern ~ main .jumbotron-overlap.first {
    margin-top: 0;
}

/* ================================================
   MOBILE BOTTOM NAVIGATION - Enhanced
   ================================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    padding: 0;
    margin: 0;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 75px;
    }
}

.mobile-bottom-nav .nav-row {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    padding: var(--space-sm) var(--space-xs);
    transition: all var(--transition-fast);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.mobile-bottom-nav .nav-item:last-child {
    border-right: none;
}

.mobile-bottom-nav .nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background var(--transition-fast);
}

.mobile-bottom-nav .nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: var(--space-xs);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    min-height: 56px;
}

.mobile-bottom-nav .nav-item a:hover,
.mobile-bottom-nav .nav-item a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.375rem;
    margin-bottom: 4px;
    display: block;
    transition: transform var(--transition-fast);
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
    white-space: nowrap;
}

/* Nav Item Colors */
.mobile-bottom-nav .nav-item.nav-yorumlar::before { background: var(--trust-gold); }
.mobile-bottom-nav .nav-item.nav-yorumlar i { color: var(--trust-gold); }

.mobile-bottom-nav .nav-item.nav-teklif::before { background: var(--info); }
.mobile-bottom-nav .nav-item.nav-teklif i { color: var(--info); }

.mobile-bottom-nav .nav-item.nav-whatsapp::before { background: var(--whatsapp-green); }
.mobile-bottom-nav .nav-item.nav-whatsapp i { color: var(--whatsapp-green); }

.mobile-bottom-nav .nav-item.nav-call::before { background: var(--error); }
.mobile-bottom-nav .nav-item.nav-call i { color: var(--error); }

/* Pulse Animation */
.mobile-bottom-nav .nav-item.nav-call i {
    animation: pulse-glow 2s infinite;
}

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

/* ================================================
   BUTTONS - Modern & Accessible
   ================================================ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px; /* Accessibility: Touch target */
    min-width: 44px;
}

.btn-modern:focus-visible {
    box-shadow: var(--focus-ring);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(237, 70, 47, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 70, 47, 0.4);
    color: #fff;
}

.btn-secondary-modern {
    background: #fff;
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
}

.btn-secondary-modern:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ================================================
   CARDS - Soft & Professional
   ================================================ */
.card-modern {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-100);
}

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

.card-modern-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
}

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

.card-modern-footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

/* ================================================
   FORMS - Accessible & User Friendly
   ================================================ */
.form-group-modern {
    margin-bottom: var(--space-lg);
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.form-group-modern .required-indicator {
    color: var(--error);
    margin-left: 2px;
}

.form-control-modern {
    width: 100%;
    padding: var(--space-md);
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: #fff;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.form-control-modern:hover {
    border-color: var(--gray-400);
}

.form-control-modern:focus {
    border-color: var(--trust-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-control-modern::placeholder {
    color: var(--gray-400);
}

/* Form validation states */
.form-control-modern.is-valid {
    border-color: var(--success);
}

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

.form-error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ================================================
   HEADER - Refined Look
   ================================================ */
.header-modern {
    background: #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1000;
}

.header-modern .header__logo img {
    transition: transform var(--transition-fast);
}

.header-modern .header__logo:hover img {
    transform: scale(1.02);
}

/* ================================================
   TYPOGRAPHY REFINEMENTS
   ================================================ */
body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-sm); }
.pt-2 { padding-top: var(--space-md); }
.pt-3 { padding-top: var(--space-lg); }
.pt-4 { padding-top: var(--space-xl); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-sm); }
.pb-2 { padding-bottom: var(--space-md); }
.pb-3 { padding-bottom: var(--space-lg); }
.pb-4 { padding-bottom: var(--space-xl); }

/* Flex utilities */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    .mobile-bottom-nav,
    .skip-link,
    .testimonials-cta {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}

/* ================================================
   FOOTER SSS LINKS - SEO Uyumlu
   ================================================ */
.footer-sss-section {
    background: transparent;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-sss-section .sss-title {
    display: inline;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}

.footer-sss-section .sss-title i {
    margin-right: 4px;
}

.footer-sss-list {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-sss-list li {
    display: inline;
    margin: 0;
    padding: 0;
}

.footer-sss-list li::after {
    content: " | ";
    color: rgba(255, 255, 255, 0.35);
    margin: 0 8px;
}

.footer-sss-list li:last-child::after {
    content: "";
    margin: 0;
}

.footer-sss-list li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-sss-list li a:hover,
.footer-sss-list li a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Mobile responsive - 2 satır yapabilir */
@media (max-width: 767px) {
    .footer-sss-section {
        padding: 10px 15px;
        line-height: 1.8;
    }
    
    .footer-sss-section .sss-title {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .footer-sss-list li a {
        font-size: 12px;
    }
    
    .footer-sss-list li::after {
        margin: 0 4px;
    }
}

/* Eski footer-url stilini kaldır/gizle */
.footer-url {
    display: none;
}
