/*
 * Bloome Beauty Club & Fit Beauty
 * Responsive CSS Framework
 */

/* ===== VARIABLES & RESET ===== */
:root {
    /* Siyah-Pembe-Beyaz Tema */
    --primary-pink: #ff1493;
    --dark-pink: #c71585;
    --light-pink: #ffb3d9;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;

    /* Eski değişken isimleri (geriye uyumluluk) */
    --dark: #1a1a1a;
    --gray: #6b7280;
    --light: #f5f5f5;

    /* Durum renkleri */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;

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

    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-pink);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
    background: var(--dark-pink);
}

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

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

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

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

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

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

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

.btn-appointment {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION (Old - Keep for compatibility) ===== */
.hero {
    margin-top: 70px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
}

/* ===== MODERN HERO SECTION ===== */
.hero-modern {
    margin-top: 70px;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}

.hero-slider-modern {
    width: 100%;
    height: 100%;
}

.hero-slide-modern {
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
}

.hero-slide-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatShape 20s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 30px) rotate(270deg); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 8s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-100px) scale(1.5); opacity: 1; }
}

/* Hero Content */
.hero-slide-modern .container {
    position: relative;
    z-index: 3;
}

.hero-content-modern {
    color: white;
    max-width: 900px;
}

/* Slide Badge */
.slide-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInLeft 1s 0.2s forwards;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: white;
}

.badge-number {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hero Title */
.hero-title-modern {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title-modern .word {
    display: inline-block;
    opacity: 0;
    animation: wordReveal 0.8s forwards;
    margin-right: 20px;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Hero Subtitle */
.hero-subtitle-modern {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Modern Button */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modern-primary {
    background: white;
    color: #ff1493;
    border: 2px solid white;
}

.btn-modern-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-modern .btn-icon {
    transition: transform 0.4s ease;
}

.btn-modern:hover .btn-icon {
    transform: translateX(5px);
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards;
}

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

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

/* Trust Badges */
.hero-badge-group {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 1s 1s forwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: #ffd700;
}

/* Decorative Line */
.hero-decoration-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
    opacity: 0.3;
}

/* Custom Navigation */
.swiper-nav-modern {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.swiper-button-prev-modern,
.swiper-button-next-modern {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.swiper-button-prev-modern:hover,
.swiper-button-next-modern:hover {
    background: white;
    color: #ff1493;
    transform: scale(1.1);
}

/* Custom Pagination */
.swiper-pagination-modern {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.swiper-pagination-modern .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-modern .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: white;
}

/* Progress Bar */
.swiper-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar-fill {
    height: 100%;
    background: white;
    width: 0;
    transition: width 0.1s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.about-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
}

.service-list {
    margin-top: 1.5rem;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--success-color);
    margin-right: 10px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.service-category {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--dark-pink));
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.15);
    border-color: var(--primary-pink);
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
}

.category-logo {
    display: block;
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5),
                0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
    outline: 3px solid var(--primary-pink);
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.category-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.7),
                0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.category-title {
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.service-card h4 {
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 600;
    color: var(--primary-pink);
    font-size: 1.1rem;
}

/* ===== BRANCHES SECTION ===== */
.branches {
    background: var(--light);
}

.branches-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.branch-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.branch-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.2);
}

/* Marka Logosu */
.branch-logo-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.branch-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
}

/* Kapak Fotoğrafı */
.branch-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    background: var(--light-gray);
}

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

.branch-image-wrapper:hover .branch-cover-img {
    transform: scale(1.05);
}

.branch-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray);
    font-size: 1rem;
}

.branch-no-image i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.3;
}

.gallery-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.gallery-badge i {
    margin-right: 5px;
}

/* Şube Bilgileri */
.branch-content {
    padding: 25px;
}

.branch-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.branch-info-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.branch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.branch-info-item i {
    color: var(--primary-pink);
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.branch-info-item a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.branch-info-item a:hover {
    color: var(--primary-pink);
}

/* Aksiyon Butonları */
.branch-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-branch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-branch i {
    font-size: 1rem;
}

.btn-call {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.btn-call:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateX(5px);
}

.btn-directions {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: var(--white);
}

.btn-directions:hover {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    transform: translateX(5px);
}

.btn-appointment {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
}

.btn-appointment:hover {
    background: linear-gradient(135deg, var(--dark-pink), #a0125f);
    transform: translateX(5px);
}

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

.btn-portfolio:hover {
    background: var(--black);
    color: var(--white);
    transform: translateX(5px);
}

/* Galeri Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.gallery-close:hover {
    transform: rotate(90deg);
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 28px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.gallery-prev {
    left: -70px;
}

.gallery-next {
    right: -70px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: translateY(-50%) scale(1.1);
}

.gallery-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .branches-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .branch-image-wrapper {
        height: 220px;
    }

    .branch-logo-wrapper {
        top: 10px;
        left: 10px;
    }

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

    .branch-content {
        padding: 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    text-align: center;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    text-align: center;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.2rem;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-filters {
    background: var(--light-gray);
    padding: 20px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
    overflow: visible;
}

.filters-wrapper {
    max-width: 100%;
    overflow: visible;
}

.filter-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
    min-width: 200px;
    z-index: 101;
}

.filter-dropdown.active {
    z-index: 1000;
}

.filter-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.filter-dropdown-btn:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.1);
}

.filter-dropdown-btn i:first-child {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.filter-dropdown-btn i:last-child {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.filter-dropdown-btn.active i:last-child {
    transform: rotate(180deg);
}

.filter-dropdown-btn span {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    min-width: 200px;
}

/* Smooth scrollbar */
.filter-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.filter-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
}

.filter-dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--light-gray);
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
}

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item.active i {
    color: var(--white);
}

.dropdown-item span {
    flex: 1;
    font-size: 0.9rem;
}

.portfolio-section {
    padding: 60px 0;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 20, 147, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.view-btn {
    background: var(--white);
    color: var(--primary-pink);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.detail-item i {
    color: var(--primary-pink);
    margin-right: 8px;
    width: 20px;
}

.load-more-container {
    text-align: center;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.appointment-form-container,
.appointment-info {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--primary-pink);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.required {
    color: var(--danger-color);
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-pink);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 30px;
}

.form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.form-messages.success {
    background: #d1fae5;
    color: var(--success-color);
    display: block;
}

.form-messages.error {
    background: #fee2e2;
    color: var(--danger-color);
    display: block;
}

.info-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 10px;
}

.info-list i {
    color: var(--primary-pink);
    margin-top: 5px;
}

.contact-info {
    margin: 20px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.modal-header h2 {
    color: var(--white);
}

.modal-body {
    padding: 40px;
}

.appointment-summary {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.modal-footer {
    padding: 20px 40px 40px;
    display: flex;
    gap: 15px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-section ul li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-pink);
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-category {
        padding: 30px;
    }
}

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

    /* Portfolio Filters Mobile */
    .portfolio-filters {
        padding: 15px 0;
    }

    .filter-bar {
        gap: 10px;
        flex-direction: column;
    }

    .filter-dropdown {
        min-width: 100%;
    }

    .filter-dropdown-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .filter-dropdown-btn i:first-child {
        font-size: 1rem;
    }

    .dropdown-item {
        padding: 10px 14px;
    }

    .dropdown-item span {
        font-size: 0.85rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1999;
        gap: 4px;
    }

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

    /* Mobil menü linkleri */
    .nav-menu > li {
        width: 100%;
    }

    .nav-menu .nav-link:not(.btn-appointment):not(.nav-dropdown-trigger) {
        display: block;
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 1rem;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-menu .nav-link:not(.btn-appointment):not(.nav-dropdown-trigger):hover,
    .nav-menu .nav-link:not(.btn-appointment):not(.nav-dropdown-trigger).active {
        background: rgba(255, 20, 147, 0.06);
    }

    .nav-menu .nav-link:not(.btn-appointment)::after {
        display: none;
    }

    .nav-menu .btn-appointment {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 6px;
        padding: 12px 25px;
    }

    .hamburger {
        display: flex;
    }

    .hero,
    .hero-slide {
        height: 500px;
    }

    .hero-slide {
        background-attachment: scroll;
        background-size: cover;
    }

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

    /* Modern Hero Mobile */
    .hero-modern {
        height: 100vh;
        min-height: 600px;
    }

    .hero-slide-modern {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title-modern {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-title-modern .word {
        margin-right: 10px;
    }

    .hero-subtitle-modern {
        font-size: 1rem;
    }

    .btn-modern {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .hero-badge-group {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .trust-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .swiper-nav-modern {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .swiper-button-prev-modern,
    .swiper-button-next-modern {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .swiper-pagination-modern {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .scroll-indicator {
        display: none;
    }

    .shape {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .service-category {
        padding: 15px;
        border-radius: 15px;
    }

    .category-header {
        gap: 10px;
        margin-bottom: 1.5rem;
    }

    .category-title {
        font-size: 1.2rem !important;
    }

    .category-logo {
        width: 70px !important;
        height: 70px !important;
        border: 2px solid var(--white);
        outline: 2px solid var(--primary-pink);
    }

    .service-items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 15px;
        border-radius: 10px;
    }

    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .service-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .service-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

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

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Portfolio Filters - Very Small Screens */
    .filter-dropdown-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .dropdown-item {
        padding: 10px 12px;
    }

    .dropdown-item span {
        font-size: 0.8rem;
    }
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: var(--transition);
}

.nav-dropdown-item:hover .nav-dropdown-trigger,
.nav-dropdown-item.active .nav-dropdown-trigger {
    color: var(--primary-pink);
}

.nav-dropdown-item:hover .nav-dropdown-trigger::after,
.nav-dropdown-item.active .nav-dropdown-trigger::after {
    width: calc(100% - 18px);
}

.nav-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: inherit;
}

.nav-dropdown-item:hover .nav-dropdown-arrow,
.nav-dropdown-item.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 20px rgba(255,20,147,0.08);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 2000;
    border: 1px solid rgba(255,20,147,0.08);
}

.nav-dropdown-item:hover .nav-dropdown-menu,
.nav-dropdown-item.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.2s ease;
    position: relative;
}

.nav-dropdown-link:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1px;
    background: #f3f4f6;
}

.nav-dropdown-link:hover {
    background: linear-gradient(135deg, rgba(255,20,147,0.06), rgba(255,20,147,0.02));
    color: var(--primary-pink);
}

.nav-dropdown-link.active {
    background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(255,20,147,0.04));
    color: var(--primary-pink);
}

.nav-dropdown-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(255,20,147,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.nav-dropdown-icon i {
    font-size: 0.9rem;
    color: var(--primary-pink);
}

.nav-dropdown-link:hover .nav-dropdown-icon {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
}

.nav-dropdown-link:hover .nav-dropdown-icon i {
    color: #fff;
}

.nav-dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-text strong {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
}

.nav-dropdown-text small {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
    line-height: 1.2;
}

.nav-dropdown-link:hover .nav-dropdown-text small {
    color: rgba(255,20,147,0.6);
}

/* Mobile Nav Dropdown */
@media (max-width: 768px) {
    .nav-dropdown-item {
        width: 100%;
        border-radius: 10px;
        transition: background 0.2s ease;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px;
        font-size: 1rem;
        border-radius: 10px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-dropdown-item.open .nav-dropdown-trigger {
        color: var(--primary-pink);
        background: rgba(255, 20, 147, 0.05);
    }

    .nav-dropdown-trigger::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid transparent;
        border-radius: 12px;
        padding: 0;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease, border-color 0.35s ease, background 0.35s ease;
        display: block;
        margin: 0 4px;
    }

    .nav-dropdown-item.open .nav-dropdown-menu {
        max-height: 500px;
        padding: 6px;
        margin: 6px 4px 4px;
        background: rgba(255, 20, 147, 0.03);
        border-color: rgba(255, 20, 147, 0.12);
    }

    .nav-dropdown-link {
        padding: 12px 10px;
        border-radius: 10px;
        gap: 12px;
    }

    .nav-dropdown-link:not(:last-child)::after {
        left: 58px;
        right: 10px;
        background: rgba(255, 20, 147, 0.08);
    }

    .nav-dropdown-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        flex-shrink: 0;
    }

    .nav-dropdown-icon i {
        font-size: 0.85rem;
    }

    .nav-dropdown-text strong {
        font-size: 0.88rem;
    }

    .nav-dropdown-text small {
        font-size: 0.72rem;
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #e5e7eb;
}

.nav-lang-switcher .lang-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-lang-switcher .lang-btn:hover {
    color: var(--primary-pink);
    background: rgba(255, 20, 147, 0.08);
}

.nav-lang-switcher .lang-btn.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: white;
}

.nav-lang-switcher .lang-divider {
    color: #ccc;
    font-size: 0.8rem;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .nav-lang-switcher {
        margin: 10px 0 0 0;
        padding: 15px 0 0 0;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        justify-content: center;
        width: 100%;
    }

    .nav-lang-switcher .lang-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
