/* =====================================================
   MIRAY KARTAL BEAUTY - ANA STİL DOSYASI
   Modern, Şık ve Profesyonel Güzellik Merkezi Teması
   ===================================================== */

/* =============== CSS DEĞİŞKENLERİ =============== */
:root {
    /* Ana Renkler */
    --primary-color: #d63384;        /* Pembe */
    --primary-dark: #ab296a;         /* Koyu Pembe */
    --primary-light: #f8d7e9;        /* Açık Pembe */
    --secondary-color: #1a365d;      /* Koyu Mavi */
    --secondary-light: #2d4a7c;      /* Orta Mavi */
    --accent-color: #e91e8c;         /* Canlı Pembe */

    /* Nötr Renkler */
    --white: #ffffff;
    --off-white: #faf8f9;
    --light-gray: #f5f0f2;
    --gray: #6b7280;
    --dark-gray: #374151;
    --black: #1f2937;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #d63384 0%, #e91e8c 50%, #ab296a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(214, 51, 132, 0.9) 0%, rgba(26, 54, 93, 0.95) 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, rgba(214, 51, 132, 0.1) 100%);

    /* Gölgeler */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-pink: 0 10px 40px rgba(214, 51, 132, 0.3);

    /* Tipografi */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Kenarlık Yarıçapları */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* =============== YARDIMCI SINIFLAR =============== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =============== BUTONLAR =============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(214, 51, 132, 0.4);
}

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

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

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

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

.btn-block {
    width: 100%;
}

/* =============== PRELOADER =============== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============== HEADER / NAVİGASYON =============== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

#header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

#header.scrolled .nav-link {
    color: var(--secondary-color);
}

#header.scrolled .logo-text {
    color: var(--secondary-color);
}

.navbar {
    padding: 20px 0;
    transition: var(--transition-normal);
}

#header.scrolled .navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-normal);
}

.logo-text span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-btn {
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-btn::after {
    display: none;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

#header.scrolled .nav-toggle span {
    background: var(--secondary-color);
}

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

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

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

/* =============== HERO BÖLÜMÜ =============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 30, 80, 0.3) 0%, rgba(50, 20, 60, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--primary-color);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
}

.hero-scroll a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* =============== HAKKIMIZDA BÖLÜMÜ =============== */
.about {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Yılbaşı Arka Plan Deseni - Hakkımızda */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Yılbaşı Dekoratif Öğeler - Hakkımızda */
.about::after {
    content: '❄️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 4rem;
    opacity: 0.1;
    animation: floatSnow 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

@keyframes floatSnow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-pink);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-text .section-subtitle {
    margin-bottom: 15px;
}

.about-text .section-subtitle::before,
.about-text .section-subtitle::after {
    display: none;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-description {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--secondary-color);
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* =============== HİZMETLER BÖLÜMÜ =============== */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* Hizmet Resim Slider */
.service-image-slider {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.slider-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .slider-btn {
    opacity: 1;
}

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

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 4px;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 51, 132, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition-normal);
}

.service-card:hover .service-link {
    transform: scale(1);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-video {
    padding: 15px;
    background: var(--light-gray);
}

.service-video video {
    width: 100%;
    border-radius: var(--radius-md);
    max-height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.service-btn::after {
    content: '→';
    transition: var(--transition-normal);
}

.service-btn:hover {
    color: var(--primary-dark);
}

.service-btn:hover::after {
    transform: translateX(5px);
}

/* =============== NEDEN BİZ BÖLÜMÜ =============== */
.why-us {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--off-white) 100%);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-text .section-subtitle::before,
.why-us-text .section-subtitle::after {
    display: none;
}

.why-us-text .section-title {
    text-align: left;
}

.why-us-text .section-description {
    text-align: left;
    margin: 0 0 40px 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.feature-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.why-us-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* =============== VİDEO GALERİ BÖLÜMÜ =============== */
.video-gallery {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f2744 100%);
    position: relative;
    overflow: hidden;
}

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

.video-gallery .section-header {
    position: relative;
    z-index: 2;
}

.video-gallery .section-subtitle {
    color: var(--primary-light);
}

.video-gallery .section-title {
    color: var(--white);
}

.video-gallery .section-title span {
    color: var(--primary-color);
}

.video-gallery .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.video-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    -webkit-overflow-scrolling: touch;
}

.video-grid::-webkit-scrollbar {
    height: 8px;
}

.video-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.video-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.video-card {
    min-width: 100%;
    max-width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    scroll-snap-align: center;
    flex-shrink: 0;
}

.video-card:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black);
    overflow: hidden;
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    transition: var(--transition-slow);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-pink);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(214, 51, 132, 0.5);
}

.play-btn i {
    margin-left: 5px;
}

.video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 10;
}

.video-wrapper:hover .video-controls,
.video-controls.visible {
    opacity: 1;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

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

.video-info {
    padding: 25px;
}

.video-info h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.video-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.video-modal video {
    width: 100%;
    border-radius: var(--radius-md);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-modal-close:hover {
    color: var(--primary-color);
}

/* Video Navigation */
.video-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.video-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.video-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.video-dots {
    display: flex;
    gap: 10px;
}

.video-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.video-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* =============== GALERİ BÖLÜMÜ =============== */
.gallery {
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 51, 132, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* =============== GOOGLE YORUMLARI BÖLÜMÜ =============== */
.google-reviews {
    background: var(--off-white);
}

/* Google Rating Summary */
.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--white);
    padding: 30px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-logo span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-score .score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.stars-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-count {
    font-size: 0.9rem;
    color: var(--gray);
}

.google-review-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-review-btn i {
    font-size: 1.2rem;
}

/* Reviews Slider */
.google-reviews-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Google Review Card */
.google-review-card {
    min-width: calc(33.333% - 17px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-meta .stars {
    display: flex;
    gap: 2px;
}

.review-meta .stars i {
    font-size: 0.85rem;
    color: #ffc107;
}

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

.google-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.google-icon i {
    font-size: 1.4rem;
    color: #4285F4;
}

.review-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Reviews Navigation */
.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.reviews-nav .nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    background: transparent;
    cursor: pointer;
}

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

.reviews-dots {
    display: flex;
    gap: 10px;
}

.reviews-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.reviews-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Review CTA */
.review-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(214, 51, 132, 0.1) 100%);
    border-radius: var(--radius-lg);
}

.review-cta p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.review-cta .btn i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .google-review-card {
        min-width: calc(50% - 13px);
    }

    .google-rating-summary {
        padding: 25px 30px;
        gap: 25px;
    }

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

@media (max-width: 768px) {
    .google-review-card {
        min-width: 100%;
    }

    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }

    .google-logo {
        flex-direction: column;
    }

    .rating-score {
        flex-direction: column;
    }

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

/* =============== CTA BÖLÜMÜ =============== */
.cta {
    position: relative;
    background: url('../images/cta-bg.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* =============== İLETİŞİM BÖLÜMÜ =============== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.info-text p,
.info-text a {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-text a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

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

/* İletişim Formu */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.1);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: var(--transition-normal);
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.form-group input:focus + i,
.form-group textarea:focus + i,
.form-group select:focus + i {
    color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* Harita */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--gray);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* =============== FOOTER =============== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

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

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =============== WHATSAPP BUTONU =============== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* =============== YUKARI GİT BUTONU =============== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-pink);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =============== LIGHTBOX =============== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* =============== RESPONSIVE TASARIM =============== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content,
    .why-us-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text .section-title,
    .why-us-text .section-title,
    .why-us-text .section-description {
        text-align: center;
    }

    .about-text .section-subtitle {
        display: block;
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--secondary-color);
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 100px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .logo-img {
        height: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .experience-badge {
        bottom: -20px;
        right: 10px;
        padding: 20px 25px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* =============== ANİMASYONLAR =============== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* =============== VİDEO MODAL =============== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
}

.video-modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.video-modal video {
    width: 100%;
    max-height: 80vh;
    display: block;
}

.service-video-btn {
    cursor: pointer;
    border: none;
}

.service-video-btn span i {
    margin-left: 5px;
}

/* Smooth scroll için */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =============== YILBAŞI TEMASI =============== */

/* Kar Yağma Efekti Container */
.snowfall-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Kar Tanesi - İyileştirilmiş */
.snowflake {
    position: absolute;
    top: -50px;
    color: white;
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.6);
    user-select: none;
    pointer-events: none;
    animation: snowfallDirect linear infinite;
    opacity: 0.9;
    z-index: 100;
}

/* Düz aşağı inen kar animasyonu */
@keyframes snowfallDirect {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* Alternatif salınımlı kar animasyonu */
@keyframes snowfallSwing {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    25% {
        transform: translateY(25vh) translateX(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(15px) rotate(180deg);
    }
    75% {
        transform: translateY(75vh) translateX(-15px) rotate(270deg);
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) translateX(0) rotate(360deg);
        opacity: 0;
    }
}

/* Yılbaşı Dekorasyon Stilleri */
.christmas-decoration {
    position: relative;
}

/* Yıldız Işıltısı */
.sparkle-star {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Yılbaşı Işıkları */
.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
        #ff0000 0%, #ff0000 10%,
        #00ff00 10%, #00ff00 20%,
        #0000ff 20%, #0000ff 30%,
        #ffff00 30%, #ffff00 40%,
        #ff00ff 40%, #ff00ff 50%,
        #00ffff 50%, #00ffff 60%,
        #ff0000 60%, #ff0000 70%,
        #00ff00 70%, #00ff00 80%,
        #0000ff 80%, #0000ff 90%,
        #ffff00 90%, #ffff00 100%
    );
    opacity: 0.6;
    animation: lightsFlicker 2s linear infinite;
    z-index: 100;
}

@keyframes lightsFlicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Yılbaşı Ağacı Ikonu (Header'a eklenebilir) */
.christmas-tree-icon {
    display: inline-block;
    font-size: 1.2em;
    color: #10b981;
    margin-left: 8px;
    animation: treeWiggle 3s ease-in-out infinite;
}

@keyframes treeWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Hediye Kutusu Animasyonu */
.gift-box {
    position: fixed;
    bottom: 120px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    z-index: 998;
    cursor: pointer;
    animation: giftBounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.gift-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 10px;
    background: #ffd700;
    border-radius: 2px;
}

.gift-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 55px;
    background: #ffd700;
    border-radius: 2px;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.gift-box i {
    position: relative;
    z-index: 2;
}

/* Yılbaşı Temalı Renkler için Güncelleme */
.christmas-theme .hero-title span {
    background: linear-gradient(135deg, #dc2626 0%, #10b981 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kar Yığını Efekti */
.snow-pile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Yılbaşı Badge */
.christmas-badge {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    z-index: 999;
    animation: badgePulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    }
}

.christmas-badge::before {
    content: '🎄';
    font-size: 1.2em;
}

/* Yılbaşı Çan Animasyonu */
.christmas-bell {
    display: inline-block;
    animation: bellRing 3s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(15deg); }
    10%, 20% { transform: rotate(-15deg); }
    25%, 100% { transform: rotate(0deg); }
}

/* Donmuş Cam Efekti */
.frosted-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Yılbaşı Partikül Efekti */
.christmas-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

/* Yılbaşı Konfeti */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd700;
    animation: confettiFall 3s linear infinite;
}

.confetti:nth-child(2n) { background: #dc2626; }
.confetti:nth-child(3n) { background: #10b981; }
.confetti:nth-child(4n) { background: #3b82f6; }

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mesaj Popup Animasyonu */
@keyframes messagePopup {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Konfeti için özel animasyon değişkenleri */
.confetti {
    --tx: 0;
    --ty: 0;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(var(--ty)) translateX(var(--tx)) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Yılbaşı Öğeleri */
@media (max-width: 768px) {
    .christmas-badge {
        top: 80px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .gift-box {
        width: 45px;
        height: 45px;
        left: 20px;
        bottom: 90px;
        font-size: 1.2rem;
    }

    .snowflake {
        font-size: 0.8em;
    }
}

/* =====================================================
   KAMPANYA SLIDER - HERO BÖLÜMÜ
   ===================================================== */

.campaign-slider {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 320px;
    height: 450px;
    z-index: 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideInRight 0.8s ease-out;
}

.campaign-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.campaign-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.campaign-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #d63384 0%, #e91e8c 100%);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
    z-index: 10;
    animation: slideInOutRight 4s ease-in-out infinite;
}

.campaign-badge i {
    animation: rotate 2s linear infinite;
}

.campaign-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.campaign-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.campaign-prev {
    left: 10px;
}

.campaign-next {
    right: 10px;
}

.campaign-nav i {
    color: var(--primary-color);
    font-size: 1rem;
}

.campaign-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.campaign-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.campaign-dots .dot.active {
    background: white;
    width: 24px;
}

/* Animasyonlar */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInOutRight {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    15% {
        transform: translateX(0);
        opacity: 1;
    }
    85% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive Kampanya Slider */
@media (max-width: 1400px) {
    .hero-content {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .campaign-slider {
        width: 280px;
        height: 400px;
        right: 15px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .campaign-slider {
        width: 250px;
        height: 350px;
    }

    .campaign-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .campaign-slider {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin: 0 auto 30px;
        right: auto;
        top: auto;
        transform: none;
    }

    .hero-content {
        margin-top: 0;
        max-width: 100%;
        margin-right: 0;
    }

    .hero {
        padding-top: 120px;
        padding-left: 0;
        justify-content: center;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .campaign-slider {
        height: 400px;
    }

    .campaign-nav {
        width: 35px;
        height: 35px;
    }

    .campaign-badge {
        top: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 0.8rem;
        animation: slideInOutRightMobile 4s ease-in-out infinite;
    }
}

@keyframes slideInOutRightMobile {
    0% {
        transform: translateX(300px);
        opacity: 0;
    }
    15% {
        transform: translateX(0);
        opacity: 1;
    }
    85% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(300px);
        opacity: 0;
    }
}

/* =====================================================
   KAMPANYALAR BÖLÜMÜ
   ===================================================== */

.campaigns {
    background: linear-gradient(135deg, #faf8f9 0%, #f5f0f2 100%);
    position: relative;
    overflow: hidden;
}

.campaigns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.campaign-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: white;
}

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

.campaign-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.campaign-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.1);
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(214, 51, 132, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-normal);
}

.campaign-card:hover .campaign-overlay {
    opacity: 1;
}

.view-campaign-btn {
    background: white;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
}

.campaign-card:hover .view-campaign-btn {
    transform: translateY(0);
}

.view-campaign-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.4);
}

.campaigns-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.campaigns-cta p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.campaigns-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1.1rem;
}

.campaigns-cta .btn i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .campaign-image img {
        height: 350px;
    }
    
    .campaigns-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .campaign-image img {
        height: 300px;
    }
    
    .view-campaign-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   HERO SOL VİDEO
   ===================================================== */

.hero-video-left {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 280px;
    height: 400px;
    z-index: 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 0.8s ease-out;
}

.hero-video-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(214, 51, 132, 0.2) 100%);
    pointer-events: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Responsive Hero Video */
@media (max-width: 1400px) {
    .hero-video-left {
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .hero-video-left {
        width: 220px;
        height: 320px;
        left: 15px;
    }
}

@media (max-width: 992px) {
    .hero-video-left {
        display: none;
    }
    
    .hero {
        padding-left: 0;
    }
}
