/* ===================================
   STEMCELL CONSULTANCY — STYLE.CSS
   Complete WordPress-Compatible Theme
   =================================== */

/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #06b6d4;
    --dark: #ffffff;
    --dark-card: #f8fafc;
    --dark-surface: #f1f5f9;
    --dark-border: rgba(0, 0, 0, 0.08);
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #475569;
    --white: #1e293b;
    --gradient-primary: linear-gradient(135deg, #0ea5e9, #06b6d4);
    --gradient-card: linear-gradient(145deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.95));
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.12);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(14, 165, 233, 0.3);
    color: var(--primary);
}

.btn-outline-light:hover {
    background: rgba(14, 165, 233, 0.08);
    border-color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #f1f5f9;
    border-bottom: 1px solid var(--dark-border);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-left i {
    color: var(--primary);
    font-size: 0.8rem;
}

.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-switcher a {
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid transparent;
}

.lang-switcher a.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
}

.lang-switcher a:hover {
    color: var(--primary);
}

/* ===== HEADER / NAV ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(241, 245, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(241, 245, 249, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.logo-text span {
    color: var(--primary);
}

/* Logo Image */
.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo .logo-img {
    height: 65px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links>li>a {
    padding: 10px 16px;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
}

.nav-links>li>a i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 860px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    margin-top: 10px;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mega-col h4 {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dark-border);
}

.mega-col ul li a {
    display: block;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mega-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #334155;
    transition: var(--transition);
    border-radius: 4px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== PAGE HERO / BREADCRUMB ===== */
.page-hero {
    padding: 100px 0 60px;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ===== HERO SLIDER (Home) ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.85) 50%, rgba(14, 165, 233, 0.12) 100%);
}

.hero-bg-1 {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        url('../images/stemcell_live/slider_1764317659_1764317659_692959dbe5048.png') center/cover no-repeat,
        #f1f5f9;
}

.hero-bg-2 {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        url('../images/stemcell_live/slider_1764317646_1764317646_692959ceb085f.png') center/cover no-repeat,
        #f1f5f9;
}

.hero-bg-3 {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 70%),
        url('../images/stemcell_live/slider3.jpeg') center/cover no-repeat,
        #f1f5f9;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(14, 165, 233, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(6, 182, 212, 0.2), transparent),
        radial-gradient(2px 2px at 60% 40%, rgba(14, 165, 233, 0.2), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(14, 165, 233, 0.2), transparent);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h3 {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.5);
    width: 36px;
    border-radius: 6px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #334155;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 80px 0;
    position: relative;
    margin-top: -60px;
    z-index: 5;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    width: 72px;
    height: 72px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.category-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link i {
    transition: var(--transition);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* ===== STATS ===== */
.stats {
    padding: 80px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-real {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
}

.about-img-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(14, 165, 233, 0.05), transparent, rgba(6, 182, 212, 0.05), transparent);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    to {
        transform: rotate(360deg);
    }
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
}

.badge-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    font-weight: 500;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-content .btn {
    margin-top: 12px;
}

/* ===== CONSULTATION STEPS ===== */
.consultation-steps {
    padding: 100px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.consultation-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.step-card {
    flex: 1;
    max-width: 340px;
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(14, 165, 233, 0.1);
    line-height: 1;
    margin-bottom: 10px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* ===== TREATMENTS GRID ===== */
.treatments {
    padding: 100px 0;
    position: relative;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.treatment-img {
    height: 200px;
    overflow: hidden;
}

.treatment-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.treatment-card:hover .treatment-img-real {
    transform: scale(1.05);
}

.treatment-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(14, 165, 233, 0.3);
    transition: var(--transition);
}

.treatment-card:hover .treatment-img-placeholder {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.1));
    transform: scale(1.05);
}

.treatment-info {
    padding: 24px;
}

.treatment-info h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.4;
}

.treatment-link {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.treatment-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.treatment-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.treatment-card:hover .treatment-link i {
    transform: translateX(5px);
}

.treatments-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.treat-prev,
.treat-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.treat-prev:hover,
.treat-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.treatments-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--dark-surface);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.2);
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.08);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    font-family: var(--font);
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 60%), #f8fafc;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== ARTICLE / CONTENT PAGE ===== */
.article-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.article-content h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-border);
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-light);
    margin: 28px 0 12px;
}

.article-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 8px;
}

.article-content ul li,
.article-content ol li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 6px 0 6px 24px;
    position: relative;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.article-content ol {
    counter-reset: item;
}

.article-content ol li {
    counter-increment: item;
}

.article-content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary);
    font-weight: 700;
}

.article-content .highlight-box {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.article-cta {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
}

.article-cta h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-page {
    padding: 80px 0;
}

.about-full {
    max-width: 900px;
    margin: 0 auto;
}

.about-full h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.about-full p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

/* Mission / Vision / Values Tabs */
.mvv-section {
    margin: 60px 0;
}

.mvv-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--dark-border);
}

.mvv-tab {
    padding: 14px 32px;
    cursor: pointer;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    font-family: var(--font);
}

.mvv-tab.active,
.mvv-tab:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.mvv-content {
    display: none;
    padding: 24px 0;
}

.mvv-content.active {
    display: block;
}

.mvv-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.98rem;
}

.mvv-content ul li {
    color: var(--text-muted);
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.95rem;
}

.mvv-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.why-card .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card h5 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    max-width: 100%;
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius);
    color: #1e293b;
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateX(4px);
}

.contact-info-card .info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-card h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info-card a:hover {
    color: var(--primary);
}

/* ===== TREATMENTS LISTING PAGE ===== */
.treatments-listing {
    padding: 80px 0;
}

.treatments-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== BLOG/EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: rgba(14, 165, 233, 0.3);
    margin-bottom: 24px;
}

.empty-state h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: #f1f5f9;
    border-top: 1px solid var(--dark-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== FLOATING ELEMENTS ===== */
.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;
    font-size: 1.8rem;
    color: #ffffff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.08);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .about-grid {
        gap: 50px;
    }

    .mega-menu {
        width: 700px;
    }

    .treatments-grid,
    .treatments-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav {
        height: 70px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links>li>a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: #f1f5f9;
        margin-top: 0;
        padding: 16px;
        display: none;
    }

    .has-dropdown.open .mega-menu {
        display: block;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

  .nav-cta{
    display:flex !important;
    position:fixed;
    top:20px;
    right:70px;
    z-index:9999;

    padding:8px 14px !important;

    font-size:12px !important;

    border-radius:30px;

    background:#ffffff;

    border:2px solid #0ea5e9;

    color:#000000 !important;

    box-shadow:0 4px 15px rgba(0,0,0,0.12);
}

    .hero {
        min-height: 550px;
        max-height: 700px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content h3 {
        font-size: 1.05rem;
    }

    .hero-arrow {
        display: none;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .categories {
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-placeholder {
        height: 350px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .treatments-grid,
    .treatments-page-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .mvv-tabs {
        flex-direction: column;
        gap: 0;
    }

    .article-content h1 {
        font-size: 1.8rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
}

/* YUSUF ISTEDI: Yeni logo boyutu ve Kategori & Makale Resimleri */
.logo-img {
    height: auto !important;
    max-height: 70px !important;
    max-width: 250px !important;
    display: block;
    object-fit: contain;
}

.footer-logo .logo-img {
    max-height: 60px !important;
    max-width: 220px !important;
}

.category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-card {
    padding: 30px 20px !important;
    /* Resim sığsın diye padding azaltıldı */
}

.category-icon {
    display: none !important;
}

.article-img-real {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
    border: 1px solid var(--dark-border);
}


/* ===== TREATMENT LOCATION PAGE ===== */
.location-page { padding-top: 40px; }

.location-intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}
.location-hero-img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}
.location-intro-text .location-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.location-intro-text h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--dark-text);
    margin-bottom: 20px;
}
.location-intro-text h2 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-top: 30px;
    margin-bottom: 12px;
}
.location-intro-text p {
    color: var(--dark-text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: justify;
}

/* Summary Box */
.location-summary-box {
    background: linear-gradient(135deg, rgba(0, 191, 174, 0.08), rgba(0, 191, 174, 0.03));
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 30px 35px;
    margin-bottom: 50px;
}
.location-summary-box .summary-icon {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.location-summary-box h3 {
    color: var(--dark-text);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.location-summary-box p {
    color: var(--dark-text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* 4 Feature Cards */
.location-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}
.location-feature-card {
    background: linear-gradient(135deg, rgba(0, 191, 174, 0.1), rgba(0, 191, 174, 0.03));
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(0, 191, 174, 0.15);
    transition: var(--transition);
}
.location-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.location-feature-card h3 {
    color: var(--dark-text);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.location-feature-card p {
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

/* Photo Gallery */
.location-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.location-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.location-gallery-item img:hover {
    transform: scale(1.03);
}

/* Bottom Info Cards */
.location-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.location-info-card {
    background: linear-gradient(145deg, rgba(0,191,174,0.12), rgba(0,191,174,0.04));
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(0,191,174,0.12);
}
.info-card-icon {
    margin-bottom: 14px;
}
.info-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: hue-rotate(160deg) brightness(0.8);
}
.location-info-card h3 {
    color: var(--dark-text);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.location-info-card p {
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-size: 0.93rem;
    text-align: justify;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .location-intro { grid-template-columns: 1fr; }
    .location-features-grid { grid-template-columns: 1fr; }
    .location-gallery { grid-template-columns: 1fr; }
    .location-info-cards { grid-template-columns: 1fr; }
    .location-intro-text h1 { font-size: 1.8rem; }
}


/* ===== MENU TEK SATIR (COMPACT NAV) ===== */
.nav-links > li > a {
    font-size: 0.82rem !important;
    padding: 8px 10px !important;
    white-space: nowrap;
}
.nav-cta {
    font-size: 0.8rem !important;
    padding: 8px 14px !important;
    white-space: nowrap;
}
.nav {
    gap: 4px !important;
}
.nav-links {
    gap: 2px !important;
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
    position: relative;
    z-index: 1002;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-current:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.lang-current.open {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.lang-current i {
    font-size: 0.75rem;
    color: var(--primary);
}

.lang-chevron {
    transition: transform 0.3s ease;
    font-size: 0.6rem !important;
}

.lang-current.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 14px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    text-align: left;
}

.lang-btn:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary);
}

.lang-btn.active {
    background: rgba(14, 165, 233, 0.12);
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.lang-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: 0 3px 3px 0;
}

.lang-flag {
    font-size: 1.15rem;
    line-height: 1;
}

/* ===== RTL SUPPORT (Arabic) ===== */
[dir="rtl"] body,
body.rtl {
    direction: rtl;
}

/* Top Bar RTL */
[dir="rtl"] .top-bar-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .top-bar-left {
    flex-direction: row-reverse;
}

[dir="rtl"] .top-bar-left a {
    flex-direction: row-reverse;
}

/* Navigation RTL */
[dir="rtl"] .nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links > li > a {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-cta {
    margin-left: 0;
    margin-right: auto;
}

/* Mega Menu RTL */
[dir="rtl"] .mega-menu {
    direction: rtl;
}

[dir="rtl"] .mega-col ul li a:hover {
    padding-left: 0;
    padding-right: 8px;
}

/* Text Alignment RTL */
[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .about-content {
    text-align: right;
}

[dir="rtl"] .section-header {
    text-align: center;
}

[dir="rtl"] p,
[dir="rtl"] li {
    text-align: right;
}

/* Grid / Flex Direction RTL */
[dir="rtl"] .about-grid {
    direction: rtl;
}

[dir="rtl"] .steps-grid {
    direction: rtl;
}

[dir="rtl"] .step-connector i {
    transform: rotate(180deg);
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-col {
    text-align: right;
}

[dir="rtl"] .footer-about {
    text-align: right;
}

[dir="rtl"] .footer-social {
    justify-content: flex-start;
}

[dir="rtl"] .footer-contact li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* Buttons RTL */
[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .cta-buttons {
    flex-direction: row-reverse;
}

/* Category Cards RTL */
[dir="rtl"] .category-link i {
    transform: rotate(180deg);
}

[dir="rtl"] .category-card:hover .category-link i {
    transform: rotate(180deg) translateX(5px);
}

/* Treatment Cards RTL */
[dir="rtl"] .treatment-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .treatment-link i {
    transform: rotate(180deg);
}

/* Breadcrumb RTL */
[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

/* Contact Page RTL */
[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .contact-form {
    text-align: right;
}

[dir="rtl"] .contact-form label {
    text-align: right;
}

[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form textarea,
[dir="rtl"] .contact-form select {
    text-align: right;
}

[dir="rtl"] .contact-info-card {
    flex-direction: row-reverse;
    text-align: right;
}

/* Consultation Page RTL */
[dir="rtl"] .consultation-grid {
    direction: rtl;
}

[dir="rtl"] .consultation-form {
    text-align: right;
}

[dir="rtl"] .consultation-form label {
    text-align: right;
}

[dir="rtl"] .consultation-form input,
[dir="rtl"] .consultation-form textarea,
[dir="rtl"] .consultation-form select {
    text-align: right;
}

[dir="rtl"] .consultation-info-box {
    text-align: right;
}

[dir="rtl"] .consultation-info-box li {
    flex-direction: row-reverse;
}

/* FAQ RTL */
[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .faq-answer {
    text-align: right;
}

[dir="rtl"] .faq-answer ul,
[dir="rtl"] .faq-answer ol {
    padding-left: 0;
    padding-right: 20px;
}

/* Article Content RTL */
[dir="rtl"] .article-content {
    text-align: right;
}

[dir="rtl"] .article-content ol,
[dir="rtl"] .article-content ul {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .article-cta {
    text-align: right;
}

/* About Page RTL */
[dir="rtl"] .about-full {
    text-align: right;
}

[dir="rtl"] .about-full ul {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .mvv-tabs {
    flex-direction: row-reverse;
}

[dir="rtl"] .why-card {
    text-align: right;
}

/* WhatsApp Float RTL */
[dir="rtl"] .whatsapp-float {
    left: 30px;
    right: auto;
}

/* Back to Top RTL */
[dir="rtl"] .back-to-top {
    left: 30px;
    right: auto;
}

/* Language Dropdown RTL */
[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .lang-btn {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .lang-btn.active::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Location Page RTL */
[dir="rtl"] .location-intro {
    direction: rtl;
}

[dir="rtl"] .location-intro-text {
    text-align: right;
}

[dir="rtl"] .location-feature-card {
    text-align: right;
}

[dir="rtl"] .location-info-card {
    text-align: right;
}

/* Blog Page RTL */
[dir="rtl"] .empty-state {
    text-align: right;
}

/* Mobile RTL adjustments */
@media (max-width: 768px) {
    [dir="rtl"] .top-bar-left {
        flex-direction: column;
        align-items: flex-end;
    }

    [dir="rtl"] .nav-links {
        text-align: right;
    }

    [dir="rtl"] .hero-content {
        text-align: center;
    }

    .lang-dropdown {
        right: 0;
        min-width: 150px;
    }

    [dir="rtl"] .lang-dropdown {
        right: auto;
        left: 0;
    }
}

/* ===== ICON HOVER EFFECTS ===== */
.category-card:hover .category-icon {
    transform: scale(1.15) rotate(8deg);
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(-8deg);
}

.stat-item:hover .stat-icon img {
    transform: scale(1.1);
}

.step-card img {
    transition: var(--transition);
}

.step-card:hover img {
    transform: scale(1.15) rotate(8deg);
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(-8deg);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.3);
}

.contact-info-card:hover .info-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.3);
}

.info-card-icon {
    transition: var(--transition);
}

.location-info-card:hover .info-card-icon {
    transform: scale(1.15) rotate(8deg);
}

.footer-social a {
    transition: var(--transition);
    display: inline-flex;
}

.footer-social a:hover {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary);
}

/* ===== CERTIFICATES SECTION ===== */

.certificates-section{
    padding: 90px 0;
}

.certificates-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:28px;
}

/* CARD */

.certificate-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

    transition:all .35s ease;

    cursor:pointer;
    position:relative;
}

/* HOVER */

.certificate-card:hover{
    transform:translateY(-10px) scale(1.02);

    box-shadow:
    0 22px 55px rgba(14,165,233,0.22);
}

/* IMAGE AREA */

.certificate-image{
    width:100%;
    height:320px;

    background:#f8fafc;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.certificate-image img{
    width:100%;
    height:100%;

    object-fit:contain;

    padding:16px;

    transition:transform .4s ease;
}

/* IMAGE HOVER */

.certificate-card:hover .certificate-image img{
    transform:scale(1.05);
}

/* TITLE */

.certificate-title{
    padding:18px;

    min-height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    font-size:14px;
    font-weight:600;
    line-height:1.5;

    color:#1e293b;

    border-top:1px solid rgba(0,0,0,0.06);
}

/* LIGHTBOX */

.certificate-popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.82);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;
}

.certificate-popup.active{
    opacity:1;
    visibility:visible;
}

.certificate-popup img{
    max-width:75%;
    max-height:85vh;

    border-radius:18px;

    background:#fff;

    padding:14px;

    box-shadow:0 20px 60px rgba(0,0,0,0.35);

    animation:popupZoom .35s ease;
}

@keyframes popupZoom{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}
p{
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

/* Butonların kendisi ortalı */
.btn,
button,
a.btn{
    text-align: center !important;
    justify-content: center !important;
}

/* Buton üstündeki CTA yazıları ortalı */
.cta-content p,
.article-cta p,
.treatments-cta p,
.section-header p,
.hero-content p{
    text-align: center !important;
}
