/* Özgenç Group TV Tamiri - Modern Profesyonel Tasarım */

/* Modern CSS Variables */
:root {
    /* Ana Renkler */
    --primary: #b7273a;
    --primary-red: #b7273a;
    --primary-dark: #9c1f2f;
    --primary-light: #d63031;
    --secondary: #54595F;
    --secondary-dark: #3a3f43;
    --secondary-light: #6b7280;
    
    /* Nötr Renkler */
    --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-800: #1f2937;
    --gray-900: #111827;
    
    /* Vurgu Renkleri */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Lacivertimsi Renkler */
    --navy-blue: #1e3a8a;
    --navy-blue-light: #3b82f6;
    --navy-blue-dark: #1e40af;
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    
    /* Gölgeler */
    --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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    height: 55px;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 85px;
    height: 55px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(183, 39, 58, 0.15);
    transition: all 0.3s ease;
}

.logo-container:hover .logo-image {
    box-shadow: 0 4px 12px rgba(183, 39, 58, 0.25);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    gap: 3px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin: 0;
    padding: 0;
    letter-spacing: -0.025em;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    letter-spacing: 0.025em;
}

/* Navigation */
.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link[aria-current="page"] {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.nav-link[aria-current="page"]::before {
    width: 100%;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(183, 39, 58, 0.3);
}

.nav-link[aria-current="page"]:hover {
    transform: translateY(-2px);
}

.nav-link[aria-current="page"]:hover::before {
    width: 100%;
    box-shadow: 0 4px 12px rgba(183, 39, 58, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: titleSlideIn 0.8s ease-out;
}

.hero-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff3838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff3838);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineExpand 0.6s ease-out 0.5s forwards;
}

/* Mobilde çizgiyi gizle veya daha ince yap */
@media (max-width: 768px) {
    .hero-highlight::after {
        height: 2px;
        bottom: -3px;
    }
}

@media (max-width: 480px) {
    .hero-highlight::after {
        display: none;
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    lg:justify-start;
    position: relative;
    z-index: 1;
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 400px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
    transform: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: none;
    height: 400px;
}

.hero-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

/* Slider Navigation Dots */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}

.slider-prev {
    left: var(--space-md);
}

.slider-next {
    right: var(--space-md);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
}

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(183, 39, 58, 0.3);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: var(--space-lg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.why-us-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.why-us-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.why-us-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-title-container {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.about-title-main {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(183, 39, 58, 0.2);
}

.about-title-accent {
    font-size: 0.6em;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: -0.5em;
    opacity: 0.8;
}

.about-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(183, 39, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.decoration-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.decoration-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(183, 39, 58, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.decoration-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

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

@media (min-width: 1024px) {
    .about-title-container {
        text-align: left;
    }
    
    .about-title {
        align-items: flex-start;
    }
    
    .about-title-decoration {
        justify-content: flex-start;
    }
}



.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.about-quote {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-top: var(--space-lg);
}

.about-quote p {
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    font-style: italic;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    position: relative;
    z-index: 2;
}

/* Page Header Sections - Dark Background with Enhanced SEO */
.about-section.py-12.bg-gray-900,
.services-detail.py-12.bg-gray-900,
.gallery.py-12.bg-gray-900,
.contact-section.py-12.bg-gray-900 {
    background: var(--gray-900) !important;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Page Header Section - Button Click Fix */
.page-header-section {
    position: relative;
    z-index: 10;
}

.page-header-section a {
    position: relative;
    z-index: 15;
    pointer-events: auto !important;
}

.page-header-section .container {
    position: relative;
    z-index: 12;
}

.about-section.py-12.bg-gray-900::before,
.services-detail.py-12.bg-gray-900::before,
.gallery.py-12.bg-gray-900::before,
.contact-section.py-12.bg-gray-900::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-section.py-12.bg-gray-900 .section-title,
.services-detail.py-12.bg-gray-900 .section-title,
.gallery.py-12.bg-gray-900 .section-title,
.contact-section.py-12.bg-gray-900 .section-title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.about-section.py-12.bg-gray-900 .section-subtitle,
.services-detail.py-12.bg-gray-900 .section-subtitle,
.gallery.py-12.bg-gray-900 .section-subtitle,
.contact-section.py-12.bg-gray-900 .section-subtitle {
    color: var(--gray-300);
    position: relative;
    z-index: 2;
}

.about-section.py-12.bg-gray-900 .gradient-text,
.services-detail.py-12.bg-gray-900 .gradient-text,
.gallery.py-12.bg-gray-900 .gradient-text,
.contact-section.py-12.bg-gray-900 .gradient-text {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

/* Enhanced hover effects for feature badges */
.about-section.py-12.bg-gray-900 .flex span,
.services-detail.py-12.bg-gray-900 .flex span,
.gallery.py-12.bg-gray-900 .flex span,
.contact-section.py-12.bg-gray-900 .flex span {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-section.py-12.bg-gray-900 .flex span:hover,
.services-detail.py-12.bg-gray-900 .flex span:hover,
.gallery.py-12.bg-gray-900 .flex span:hover,
.contact-section.py-12.bg-gray-900 .flex span:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: none;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 200px;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover img {
    transform: none;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(183, 39, 58, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Marka sayfaları galeri öğeleri için genel stiller */
[class*="-gallery-item"] {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

[class*="-gallery-item"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[class*="-gallery-item"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

[class*="-gallery-item"]:hover img {
    transform: scale(1.05);
}

[class*="-gallery-item"] .absolute {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

[class*="-gallery-item"]:hover .absolute {
    background: rgba(0, 0, 0, 0.3);
}

[class*="-gallery-item"] .fas {
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[class*="-gallery-item"]:hover .fas {
    opacity: 1;
}



/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: var(--space-sm);
    left: var(--space-lg);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info h4 {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Service Detail Cards */
.service-detail-card {
    text-decoration: none;
    color: inherit;
    display: block;
}



/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.map-container iframe {
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.service-image-container {
    position: relative;
    overflow: hidden;
}

.service-image-container img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(183, 39, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(84, 89, 95, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.service-areas > .container {
    position: relative;
    z-index: 2;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.area-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.area-card:hover {
    background: var(--white);
    color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.area-card:hover .area-icon {
    color: var(--primary);
}

.area-icon {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.area-title {
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    color: var(--gray-700);
}

.area-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    width: 100%;
    margin-top: var(--space-md);
}

.area-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: block;
    text-align: center;
    background: var(--white);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.area-link:hover {
    color: var(--primary);
    background: var(--gray-50);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.area-card:hover .area-link {
    color: var(--gray-600);
    background: var(--white);
    border-color: var(--gray-200);
}

.area-card:hover .area-link:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-color: var(--primary);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--gray-50);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(183, 39, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(84, 89, 95, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.map-section > .container {
    position: relative;
    z-index: 1;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    background: white;
}

.map-container iframe {
    display: block;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(183, 39, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(84, 89, 95, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer > .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(2px);
}

.footer-section p,
.footer-section li {
    color: var(--gray-300);
    line-height: 1.4;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-xs) 0;
    display: inline-block;
}

.footer-section a:hover:not(.social-link) {
    color: var(--primary);
    transform: translateX(4px);
}

/* Footer link hover çizgisini kaldır */
.footer-section a::before {
    display: none;
}

.footer-section a:hover::before {
    display: none;
}

/* SEO Keywords */
.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.keyword-tag {
    background: var(--gray-700);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: background 0.3s ease;
}

.keyword-tag:hover {
    background: var(--primary);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-facebook {
    background: #1877f2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: none;
    color: var(--white) !important;
}

/* Sosyal medya ikonları için hover efektlerini düzelt */
.social-link:hover,
.footer-social .social-link:hover,
.footer-section .social-link:hover {
    transform: none !important;
    color: white !important;
    text-decoration: none !important;
}

.social-link:hover i,
.footer-social .social-link:hover i,
.footer-section .social-link:hover i {
    transform: none !important;
    color: white !important;
}

/* Her sosyal medya ikonunun kendi arka planını koru */
.social-facebook:hover {
    background: #1877f2 !important;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.social-youtube:hover {
    background: #ff0000 !important;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-lg);
    text-align: center;
    color: var(--gray-400);
}

/* Footer Logo */
.footer-logo-container {
    margin-bottom: var(--space-md);
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-icon {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 50;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-phone {
    background: var(--primary);
}

.floating-call {
    background: var(--primary);
}

.floating-top {
    background: var(--primary);
}

.floating-scroll {
    background: var(--primary);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    padding: var(--space-sm);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    top: var(--space-lg);
    right: var(--space-lg);
}

.lightbox-prev {
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Styles */
.mobile-menu-hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-visible {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Button */
#mobileMenuBtn {
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

#mobileMenuBtn:hover {
    background: rgba(183, 39, 58, 0.08);
    color: var(--primary);
    transform: scale(1.05);
}

#mobileMenuBtn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    background: rgba(183, 39, 58, 0.08);
}

/* Mobile Menu */
#mobileMenu {
    background: white;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: none; /* Başlangıçta gizli */
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#mobileMenu nav {
    padding: var(--space-md) 0;
}

#mobileMenu .nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    margin: 0 var(--space-sm);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

#mobileMenu .nav-link:hover {
    background: var(--gray-50);
    color: var(--primary);
    transform: translateX(4px);
    margin-left: var(--space-md);
    margin-right: var(--space-xs);
}

#mobileMenu .nav-link:last-child {
    border-bottom: none;
}

#mobileMenu .nav-link[aria-current="page"] {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    margin-left: var(--space-md);
    margin-right: var(--space-xs);
}

#mobileMenu .nav-link[aria-current="page"]:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateX(4px);
}

/* Mobile Dropdown Scroll Fix */
.mobile-dropdown-content {
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-dropdown-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.mobile-dropdown-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.mobile-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero-slider-container {
        margin-bottom: 40px;
        height: 250px;
    }
    
    .hero-slide {
        height: 250px;
    }
    
    .hero-slide.active {
        height: 250px;
    }
    
    .hero-slide img {
        aspect-ratio: 16/9;
        object-fit: cover;
        width: 100%;
        height: 250px;
        min-height: 200px;
        max-height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .why-us-grid,
    .testimonials-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
    
    .area-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-md);
    }
    
    .floating-buttons {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    /* Mobile Slider Adjustments */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 0.8;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slider-prev {
        left: var(--space-xs);
    }
    
    .slider-next {
        right: var(--space-xs);
    }
    
    .hero-slider-dots {
        margin-top: var(--space-sm);
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .area-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .area-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    
    .container {
        padding: 0 var(--space-xs);
    }
}

/* Service Features - SEO için eklenen stiller */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.service-tag {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gallery Filter Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
