/*
 * Life Kuru Temizleme - Static Website
 * lifekurutemizleme.com
 */

:root {
    --primary-color: #1a3a52;
    --primary-dark: #0f2438;
    --primary-light: #2d5a7b;
    --gold-accent: #C9A84C;
    --gold-light: #D4B85C;
    --white: #ffffff;
    --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-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background-color: var(--white);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo {
    display: flex;
    justify-content: center;
    flex: 1;
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    padding-bottom: 12px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav a {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 6px;
}

.main-nav a:hover {
    color: var(--primary-color);
    background-color: var(--gray-50);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    list-style: none;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        display: none;
        background: var(--gray-50);
        border-radius: 8px;
        margin-top: 8px;
    }

    .has-dropdown.active .dropdown {
        display: flex;
        flex-direction: column;
    }

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

/* Hero Section */
.hero {
    padding: 340px 0 240px;
    background:
        linear-gradient(135deg, rgba(26, 58, 82, 0.5) 0%, rgba(45, 90, 123, 0.5) 100%),
        url('../images/hero-banner.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.hero-feature-icon {
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-feature-free {
    display: inline;
}

@media (max-width: 768px) {
    .hero-feature {
        flex-direction: column;
        gap: 8px;
    }

    .hero-feature-icon {
        width: 32px;
        height: 32px;
    }

    .hero-feature-text {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-feature-free {
        display: block;
        font-size: 1.75rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid - 2 Column */
.services-section {
    padding: 100px 0;
    background-color: var(--gray-50);
}

/* Services Intro - Two Column Layout */
.services-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.services-left-column {
    text-align: center;
}

.vehicle-showcase {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vehicle-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.vehicle-description {
    margin-top: 24px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
}

.services-right-column h2 {
    margin-bottom: 20px;
    color: var(--gray-900);
}

.services-right-column p {
    color: #000000;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .services-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .services-left-column {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-right-column {
        text-align: center;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .services-grid-2col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Services Grid - 4 Column - Minimalist */
.services-grid-3col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .services-grid-3col {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .services-grid-3col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service-card-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    background: var(--white);
    border-bottom: 3px solid var(--gray-200);
}

/* Renkli alt border'lar - her kart farklı renk */
.service-card-photo:nth-child(3n+1) {
    border-bottom-color: #3b82f6;
}

.service-card-photo:nth-child(3n+2) {
    border-bottom-color: #10b981;
}

.service-card-photo:nth-child(3n+3) {
    border-bottom-color: var(--gold-accent);
}

.service-card-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.service-card-photo:hover::after {
    width: 100%;
}

.service-card-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card-body {
    padding: 28px;
    position: relative;
}

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card-body p {
    color: #000000;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-card-link svg {
    transition: var(--transition);
}

.service-card-photo:hover .service-card-link svg {
    transform: translateX(4px);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
}

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

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-item h3 {
    margin-bottom: 12px;
}

.feature-item p {
    color: #000000;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--gray-50);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

.testimonial-item {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .testimonial-item {
        padding: 32px 24px;
    }
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 24px;
    color: #000000;
}

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

.testimonial-location {
    color: #000000;
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 100px;
}

@media (min-width: 769px) {
    .site-footer {
        padding-bottom: 60px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

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

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

.footer-about p {
    margin-top: 16px;
    line-height: 1.8;
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

@media (max-width: 768px) {
    .mobile-fixed-buttons {
        display: flex;
    }
}

.mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.mobile-btn-call {
    background-color: var(--primary-color);
    color: var(--white);
}

.mobile-btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

/* Page Header */
.page-header {
    padding: 170px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

.page-content p {
    margin-bottom: 20px;
}

/* Service Page */
.service-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.service-hero .container {
    text-align: center;
}

.service-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.service-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.service-content {
    padding: 80px 0;
}

/* Service Page Layout with Sidebar */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-main {
    min-width: 0;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-main-content h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.service-main-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.service-main-content h3 {
    font-size: 1.35rem;
    margin: 40px 0 20px;
    color: var(--gray-900);
}

.service-main-content ul {
    color: #000000;
}

.service-main-content ul li {
    color: #000000;
    margin-bottom: 8px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-service-item:hover {
    background: var(--primary-color);
    transform: translateX(6px);
}

.sidebar-service-item:hover .sidebar-service-title {
    color: var(--white);
}

.sidebar-service-item:hover .sidebar-service-image {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-service-item.active {
    background: var(--primary-color);
}

.sidebar-service-item.active .sidebar-service-title {
    color: var(--white);
}

.sidebar-service-item.active .sidebar-service-image {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-service-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.sidebar-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-service-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000000;
    transition: var(--transition);
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

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

.service-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-steps {
    margin: 40px 0;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Service CTA Box */
.service-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 32px;
    margin-top: 30px;
    text-align: center;
    color: var(--white);
}

.service-cta-box h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.service-cta-box .btn {
    width: 100%;
    margin-bottom: 10px;
}

.service-cta-box .btn:last-child {
    margin-bottom: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 4px;
}

.contact-info-item p {
    color: #000000;
    margin-bottom: 0;
}

.contact-info-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

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

.value-card {
    text-align: center;
    padding: 32px;
    background-color: var(--gray-50);
    border-radius: 12px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Gold Accent */
.gold-accent {
    color: var(--gold-accent);
}

/* About Gallery Section */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 60px;
    margin-bottom: 60px;
}

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

@media (max-width: 768px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before-After Image Comparison */
.comparison-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.comparison-section .section-title h2 {
    color: var(--white);
}

.comparison-section .section-title p {
    color: var(--white);
    opacity: 0.9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

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

.comparison-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: col-resize;
}


.comparison-labels {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 5;
    pointer-events: none;
}

.comparison-label {
    background: rgba(45, 42, 110, 0.9);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-title {
    padding: 20px;
    text-align: center;
}

.comparison-title h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin: 0;
}

/* Comparison Images */
.comparison-slider .comparison-before,
.comparison-slider .comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.comparison-slider .comparison-before {
    z-index: 1;
}

.comparison-slider .comparison-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

/* Comparison Placeholder */
.comparison-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.comparison-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
}

.comparison-placeholder::after {
    content: 'Önce / Sonra Görseli';
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}

/* Service Page Comparison */
.service-comparison {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.service-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
}

.service-comparison .comparison-item {
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-grid > * {
    flex: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-top: 10px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Desktop: text left, image right */
.about-grid .about-image {
    order: 2;
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid .about-text {
        order: 1;
    }

    .about-grid .about-image {
        order: 0;
    }
}

/* About Mission Vision Section */
.about-mission-vision {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
    padding: 40px 0;
}

.about-mission-vision > * {
    flex: 1;
}

.about-mission-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-mission-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-mission-text h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.about-mission-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
}

/* Desktop: image left, text right */
.about-mission-vision .about-mission-image {
    order: -1;
}

@media (max-width: 768px) {
    .about-mission-vision {
        flex-direction: column;
        gap: 30px;
    }

    .about-mission-vision .about-mission-text {
        order: 1;
    }

    .about-mission-vision .about-mission-image {
        order: 0;
    }

    /* Hero mobilde küçültme */
    .hero {
        padding: 180px 0 120px;
        background:
            linear-gradient(135deg, rgba(26, 58, 82, 0.5) 0%, rgba(45, 90, 123, 0.5) 100%),
            url('../images/hero-banner-mobile.png');
        background-size: cover;
        background-position: center center;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ==========================================
   HOVER EFEKTLERİ
   ========================================== */

/* Servis Kartları */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Servis Fotoğrafları */
.service-card-photo {
    overflow: hidden;
}

.service-card-photo img {
    transition: transform 0.4s ease;
}

.service-card-photo:hover img {
    transform: scale(1.08);
}

/* Butonlar */
.btn {
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #1567a3;
}

.btn-secondary:hover {
    background-color: #dc8a28;
}

/* Feature Cards */
.feature-item {
    /* Hover efekti kaldırıldı */
}

/* İkonlar - Sidebar hover efekti kaldırıldı */

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ====================================
   KÖPÜK/BALONCUK ANIMASYONU
==================================== */

/* Baloncuk Konteyneri */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Baloncuk Stilleri */
.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    border-radius: 50%;
    opacity: 0;
    animation: rise 15s infinite ease-in;
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
}

/* Baloncuk yükselme animasyonu */
@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(100px) scale(0.5);
    }
}

/* Farklı boyut ve pozisyonlar için sınıflar */
.bubble:nth-child(1) {
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble:nth-child(3) {
    left: 40%;
    width: 30px;
    height: 30px;
    animation-delay: 4s;
    animation-duration: 11s;
}

.bubble:nth-child(4) {
    left: 55%;
    width: 25px;
    height: 25px;
    animation-delay: 1s;
    animation-duration: 13s;
}

.bubble:nth-child(5) {
    left: 70%;
    width: 35px;
    height: 35px;
    animation-delay: 3s;
    animation-duration: 15s;
}

.bubble:nth-child(6) {
    left: 85%;
    width: 22px;
    height: 22px;
    animation-delay: 5s;
    animation-duration: 12s;
}

.bubble:nth-child(7) {
    left: 15%;
    width: 28px;
    height: 28px;
    animation-delay: 6s;
    animation-duration: 14s;
}

.bubble:nth-child(8) {
    left: 60%;
    width: 18px;
    height: 18px;
    animation-delay: 7s;
    animation-duration: 13s;
}

/* Mobil için daha az baloncuk */
@media (max-width: 768px) {
    .bubble:nth-child(n+6) {
        display: none;
    }
}
