/* ========================================
   Bütçe Takibi - Maliye Tasarım Sistemi
   MaliyeColors.kt'den alınan renkler
   Modern Glass Morphism + Gradients
======================================== */

/* CSS Variables - Maliye Renk Paleti */
:root {
    /* Primary - Lacivert (güven, finans) */
    --primary: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;

    /* Secondary - Koyu turkuaz (büyüme) */
    --secondary: #0F766E;
    --secondary-light: #14B8A6;

    /* Surface (kart, modal) */
    --surface: #FFFFFF;
    --surface-variant: #FAFBFC;

    /* Background (sayfa) */
    --background: #EEF1F5;

    /* Input alanları */
    --input-background: #F1F4F8;
    --input-border: #E2E8F0;

    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-secondary-dark: #475569;
    --text-tertiary: #94A3B8;
    --text-disabled: #CBD5E1;
    --text-on-primary: #FFFFFF;

    /* Semantic */
    --success: #059669;
    --success-light: #D1FAE5;
    --error: #DC2626;
    --error-light: #FEE2E2;
    --warning: #D97706;
    --warning-light: #FEF3C7;
    --warning-dark: #B45309;
    --info: #2563EB;
    --info-light: #DBEAFE;

    /* Borders */
    --border: #E2E8F0;
    --border-dark: #CBD5E1;

    /* Goal/Hedef */
    --goal-orange: #FF7043;
    --goal-orange-light: #FF8A65;

    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Modern Shadows with color */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(30, 64, 175, 0.15);
    --shadow-glow-lg: 0 0 60px rgba(30, 64, 175, 0.2);

    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #0F766E 100%);
    --gradient-hero: linear-gradient(135deg, #EEF1F5 0%, #DBEAFE 50%, #D1FAE5 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    --gradient-shine: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

/* ========================================
   Navbar - Glass Morphism
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.navbar-brand img {
    width: 36px;
    height: 36px;
}

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

.navbar-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-menu a:hover {
    color: var(--primary);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ========================================
   Hero Section - Modern Gradient
======================================== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: var(--gradient-hero);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-content .tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-buttons .btn {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    justify-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-image img {
    max-width: 320px;
    filter: drop-shadow(0 20px 40px rgba(30, 64, 175, 0.2));
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

/* CTA Button - Modern Gradient */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-on-primary);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    color: var(--text-on-primary);
}

.btn-disabled {
    background: linear-gradient(135deg, var(--text-disabled) 0%, var(--border-dark) 100%);
    color: var(--text-secondary);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-disabled:hover {
    background: linear-gradient(135deg, var(--text-disabled) 0%, var(--border-dark) 100%);
    color: var(--text-secondary);
    transform: none;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .store-buttons {
        justify-content: center;
    }

    .store-buttons .btn {
        min-width: 160px;
        max-width: 100%;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 240px;
    }
}

/* ========================================
   Features Section
======================================== */
.features {
    background: var(--background);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(30, 64, 175, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

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

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Assistants Section
======================================== */
.assistants {
    background: var(--surface);
}

.assistants-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.assistants-intro p {
    font-size: 1.125rem;
}

.assistants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.assistant-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.assistant-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.assistant-card:hover::after {
    opacity: 1;
}

.assistant-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-lg);
}

.assistant-card.yigit:hover {
    border-color: rgba(30, 64, 175, 0.5);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
}

.assistant-card.selma:hover {
    border-color: rgba(255, 112, 67, 0.5);
    box-shadow: 0 20px 60px rgba(255, 112, 67, 0.2);
}

.assistant-images {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.assistant-images img {
    width: 100px;
    height: auto;
    border-radius: var(--radius-md);
}

.assistant-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-free {
    background: var(--success-light);
    color: var(--success);
}

.badge-premium {
    background: var(--warning-light);
    color: var(--warning);
}

.assistant-card h3 {
    margin-bottom: 0.75rem;
}

.assistant-card p {
    font-size: 0.95rem;
}

/* Coming Soon */
.coming-soon {
    background: var(--surface-variant);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 2px dashed var(--border);
}

.coming-soon h4 {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.coming-soon-avatars {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.coming-soon-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.avatar-placeholder {
    width: 64px;
    height: 64px;
    background: var(--input-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-tertiary);
}

.coming-soon-avatar span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .assistants-grid {
        grid-template-columns: 1fr;
    }

    .assistant-images img {
        width: 80px;
    }
}

/* ========================================
   Screenshots Section
======================================== */
.screenshots {
    background: var(--background);
    overflow: hidden;
}

.screenshots-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshots-wrapper::-webkit-scrollbar {
    height: 8px;
}

.screenshots-wrapper::-webkit-scrollbar-track {
    background: var(--input-background);
    border-radius: 4px;
}

.screenshots-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 4px;
}

.screenshot-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.phone-mockup {
    width: 200px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.phone-mockup img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 9/19;
    object-fit: cover;
    background: var(--input-background);
}

.screenshot-placeholder {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 9/19;
    background: var(--input-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .phone-mockup {
        width: 160px;
    }
}

/* ========================================
   Privacy Section
======================================== */
.privacy-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-on-primary);
}

.privacy-section .section-title h2 {
    color: var(--text-on-primary);
}

.privacy-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.privacy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.privacy-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.privacy-item h4 {
    color: var(--text-on-primary);
}

.privacy-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

@media (max-width: 576px) {
    .privacy-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    background: var(--surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-variant);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* ========================================
   Reviews Section - Google Style
======================================== */
.reviews {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.reviews::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='%231E40AF' 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");
    pointer-events: none;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-logo svg {
    height: 28px;
    width: auto;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    fill: #FBBC04;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review-avatar.bg-1 { background: linear-gradient(135deg, #1E40AF, #3B82F6); }
.review-avatar.bg-2 { background: linear-gradient(135deg, #0F766E, #14B8A6); }
.review-avatar.bg-3 { background: linear-gradient(135deg, #DC2626, #EF4444); }
.review-avatar.bg-4 { background: linear-gradient(135deg, #D97706, #F59E0B); }
.review-avatar.bg-5 { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.review-avatar.bg-6 { background: linear-gradient(135deg, #DB2777, #EC4899); }

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

.review-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #FBBC04;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.review-google-badge svg {
    width: 16px;
    height: 16px;
}

.review-google-badge span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

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

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rating-score {
        font-size: 2rem;
    }
}

/* ========================================
   Footer - Kurumsal
======================================== */
.footer {
    background: linear-gradient(180deg, var(--text-primary) 0%, #0a1628 100%);
    color: var(--text-tertiary);
    padding: 4rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-on-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand-title img {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-column h4 {
    color: var(--text-on-primary);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--text-tertiary);
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-tertiary);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-tertiary);
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-on-primary);
}

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

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand-title {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   Legal Pages - Site Header
======================================== */
.legal-header {
    background: var(--surface);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.legal-header .container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-header a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

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

/* ========================================
   Scroll Animations
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Utilities
======================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ========================================
   Floating Contact Menu (FAB)
======================================== */
.floating-contact {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

.floating-contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.floating-contact-toggle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.floating-contact-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.5);
}

.floating-contact-toggle svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.floating-contact.active .floating-contact-toggle svg {
    transform: rotate(45deg);
}

.floating-contact-toggle .icon-close {
    display: none;
}

.floating-contact.active .floating-contact-toggle .icon-contact {
    display: none;
}

.floating-contact.active .floating-contact-toggle .icon-close {
    display: block;
}

/* Menu Items */
.floating-contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact.active .floating-contact-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 12px;
    background: white;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-contact.active .floating-menu-item {
    transform: translateX(0);
    opacity: 1;
}

.floating-contact.active .floating-menu-item:nth-child(1) { transition-delay: 0.05s; }
.floating-contact.active .floating-menu-item:nth-child(2) { transition-delay: 0.1s; }
.floating-contact.active .floating-menu-item:nth-child(3) { transition-delay: 0.15s; }

.floating-menu-item:hover {
    transform: translateX(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.floating-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-menu-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.floating-menu-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-menu-icon.phone {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
}

.floating-menu-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.floating-menu-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.floating-menu-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 1px;
}

/* Backdrop */
.floating-contact-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.floating-contact.active + .floating-contact-backdrop {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 576px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-contact-toggle {
        width: 54px;
        height: 54px;
    }

    .floating-menu-item {
        padding: 8px 14px 8px 10px;
    }

    .floating-menu-icon {
        width: 36px;
        height: 36px;
    }

    .floating-menu-text {
        font-size: 0.85rem;
    }
}

/* ========================================
   Quick Contact Chips (Compact & Elegant)
======================================== */
.contact-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    color: white;
    transition: all 0.25s ease;
    position: relative;
}

.contact-chip:hover {
    transform: translateY(-2px);
    color: white;
}

.contact-chip svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.contact-chip.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.contact-chip.whatsapp:hover {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.contact-chip.phone {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.contact-chip.phone:hover {
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.4);
}

.contact-chip.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    box-shadow: 0 2px 8px rgba(131, 58, 180, 0.3);
}

.contact-chip.instagram:hover {
    box-shadow: 0 4px 16px rgba(131, 58, 180, 0.4);
}

/* ========================================
   Social Links in Footer
======================================== */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: var(--text-tertiary);
    transition: fill 0.3s ease;
}

.footer-social a.whatsapp:hover {
    background: #25D366;
}

.footer-social a.whatsapp:hover svg {
    fill: white;
}

.footer-social a.instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.footer-social a.instagram:hover svg {
    fill: white;
}

.footer-social a.phone:hover {
    background: var(--primary);
}

.footer-social a.phone:hover svg {
    fill: white;
}
