/*
Theme Name: LOQOS
Theme URI: https://loqos.az
Description: LOQOS Psixoloji və Nitq Mərkəzi - WordPress teması
Version: 1.0.0
Author: LOQOS Dev
Author URI: https://loqos.az
Text Domain: loqos
*/

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary: #4BBFB4;
    --primary-light: #7DD5CC;
    --primary-dark: #3AA89E;
    --primary-bg: #E8F8F5;
    --accent: #F0A050;
    --accent-light: #FFF3E6;
    --text-dark: #2D3436;
    --text-medium: #636E72;
    --text-light: #B2BEC3;
    --bg-white: #FFFFFF;
    --bg-warm: #FAFCFB;
    --bg-section: #F4F9F8;
    --bg-glass: rgba(255,255,255,0.75);
    --shadow-sm: 0 2px 8px rgba(75,191,180,0.08);
    --shadow-md: 0 8px 30px rgba(75,191,180,0.12);
    --shadow-lg: 0 20px 60px rgba(75,191,180,0.15);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }

/* ==================== UTILITY ==================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--primary);
    margin-bottom: 12px; display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; color: var(--text-dark);
    line-height: 1.2; margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem; color: var(--text-medium);
    max-width: 600px; line-height: 1.8;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 60px; font-weight: 600;
    font-size: 0.95rem; text-decoration: none; transition: var(--transition);
    border: none; cursor: pointer; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; box-shadow: 0 8px 25px rgba(75,191,180,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(75,191,180,0.4); }
.btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white {
    background: white; color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
    padding: 10px 0;
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 32px; display: block; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 28px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text-dark); font-weight: 500;
    font-size: 0.85rem; transition: var(--transition); position: relative;
    padding: 8px 14px; border-radius: 40px; white-space: nowrap;
}
.nav-links a:hover { background: var(--primary-bg); color: var(--primary-dark); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher {
    display: flex; gap: 4px; background: var(--bg-section);
    border-radius: 30px; padding: 4px;
}
.lang-btn {
    padding: 5px 11px; border-radius: 30px; border: none;
    cursor: pointer; font-size: 0.75rem; font-weight: 600;
    background: transparent; color: var(--text-medium);
    transition: var(--transition); font-family: inherit;
}
.lang-btn.active { background: var(--primary); color: white; }
.lang-btn:hover:not(.active) { color: var(--primary); }
.nav-cta { font-size: 0.82rem; padding: 10px 22px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text-dark);
    margin: 6px 0; transition: var(--transition); border-radius: 2px;
}

/* ==================== DROPDOWN ==================== */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
    background: var(--bg-white); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); padding: 8px; min-width: 200px;
    opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px);
    transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 10px 16px; border-radius: 8px;
    font-size: 14px; color: var(--text-dark) !important; text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--primary-bg); color: var(--primary-dark) !important; }

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    z-index: 2000; flex-direction: column; opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-menu.open { display: flex; opacity: 1; visibility: visible; }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.close-menu {
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: var(--bg-section); cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); transition: var(--transition);
}
.close-menu:hover { background: var(--primary); color: white; }
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.mobile-menu-body a {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--text-dark); font-size: 1.1rem;
    font-weight: 500; padding: 16px; border-radius: var(--radius-sm);
    transition: var(--transition); border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-menu-body a i { width: 24px; text-align: center; color: var(--primary); font-size: 1rem; }
.mobile-menu-body a:hover, .mobile-menu-body a:active {
    background: var(--primary-bg); color: var(--primary-dark);
}
.mobile-menu-footer { padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.05); }
.mobile-menu a, .mobile-menu a:link, .mobile-menu a:visited, .mobile-menu a:hover, .mobile-menu a:active { color: var(--text-dark); text-decoration: none; }
.mobile-menu .btn-primary, .mobile-menu .btn-primary:link, .mobile-menu .btn-primary:visited { color: #fff !important; }
.mobile-phone-link {
    display: block; text-align: center; margin-top: 12px;
    font-weight: 600; font-size: 1.05rem; color: var(--primary-dark);
    text-decoration: none;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--bg-warm) 0%, var(--primary-bg) 50%, var(--bg-warm) 100%);
    padding-top: 100px;
}
.hero::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(75,191,180,0.12) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
    animation: floatBubble 20s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240,160,80,0.08) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
    animation: floatBubble 25s ease-in-out infinite 5s;
}
@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero .container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 24px;
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.15rem; color: var(--text-medium);
    line-height: 1.8; margin-bottom: 40px; max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-image-wrapper {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img { width: 100%; height: 550px; object-fit: cover; display: block; }
.hero-float-card {
    position: absolute; background: var(--bg-glass);
    backdrop-filter: blur(16px); border-radius: var(--radius-sm);
    padding: 18px 24px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 14px;
    animation: float 6s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 40px; left: -30px; }
.hero-float-card.card-2 { top: 40px; right: -30px; animation-delay: -3s; }
.float-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
}
.float-icon.teal { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.float-icon.orange { background: linear-gradient(135deg, var(--accent), #E8913F); }
.float-card-text strong { display: block; font-size: 1.4rem; }
.float-card-text span { font-size: 0.82rem; color: var(--text-medium); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
    padding: 8px 20px; border-radius: 40px; font-size: 13px;
    font-weight: 500; color: var(--primary-dark); margin-bottom: 24px;
    border: 1px solid rgba(75,191,180,0.3);
}
.hero-badge::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary); animation: pulse 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* ==================== STATS ==================== */
.stats-bar { padding: 60px 0; background: var(--bg-white); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 30px; border-radius: var(--radius-md); border: 2px solid transparent; transition: all 0.35s ease; }
.stat-item:hover { border-color: var(--primary-light); background: var(--bg-white); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.95rem; color: var(--text-medium); font-weight: 500; }

/* ==================== ABOUT ==================== */
.about { padding: 100px 0; background: var(--bg-section); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary-light), transparent); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); object-fit: cover; height: 480px; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 24px; border-radius: var(--radius-sm); text-align: center; box-shadow: var(--shadow-md); }
.about-badge strong { font-size: 2.2rem; display: block; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: 0.85rem; opacity: 0.9; }
.about-content .features-list { margin-top: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.feature-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: var(--text-medium); }

/* ==================== SERVICES ==================== */
.services { padding: 100px 0 60px; background: var(--bg-white); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-btn { padding: 12px 28px; border-radius: 60px; border: 2px solid var(--bg-section); background: var(--bg-white); cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: var(--transition); font-family: inherit; color: var(--text-medium); }
.tab-btn.active, .tab-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; transition: all 0.35s ease; box-shadow: var(--shadow-card); border: 2px solid rgba(75,191,180,0.06); position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: var(--transition); z-index: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, rgba(255,255,255,0.9)); }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
.service-card-body p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 16px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 12px; }

/* ==================== BRANCHES ==================== */
.branches { padding: 100px 0; background: linear-gradient(160deg, var(--bg-section) 0%, var(--primary-bg) 100%); }
.branches-header { text-align: center; margin-bottom: 60px; }
.branches-header .section-subtitle { margin: 0 auto; }
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.branch-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; transition: all 0.35s ease; border: 2px solid rgba(75,191,180,0.06); }
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.branch-img { height: 180px; overflow: hidden; }
.branch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.branch-card:hover .branch-img img { transform: scale(1.05); }
.branch-info { padding: 22px; }
.branch-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.branch-info p { font-size: 13.5px; color: var(--text-medium); margin-bottom: 4px; line-height: 1.6; }
.branch-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-dark); font-weight: 600; font-size: 14px; text-decoration: none; margin-top: 8px; transition: var(--transition); }
.branch-phone:hover { color: var(--primary); }

/* ==================== THERAPIES ==================== */
.therapies { padding: 100px 0; background: var(--bg-white); }
.therapies-header { text-align: center; margin-bottom: 60px; }
.therapies-header .section-subtitle { margin: 0 auto; }
.therapies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.therapy-card { display: flex; gap: 24px; background: var(--bg-section); border-radius: var(--radius-md); padding: 32px; transition: all 0.35s ease; align-items: center; border: 2px solid transparent; }
.therapy-card:hover { background: var(--bg-white); box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-4px); }
.therapy-icon-box { width: 72px; height: 72px; min-width: 72px; border-radius: 20px; background: linear-gradient(135deg, var(--primary-bg), rgba(75,191,180,0.15)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary); transition: var(--transition); }
.therapy-card:hover .therapy-icon-box { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.therapy-info h3 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 600; }
.therapy-info p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; }

/* ==================== CTA ==================== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #2E9E94 100%); }
.cta-content { text-align: center; color: white; position: relative; z-index: 1; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 40px; max-width: 600px; margin-inline: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 700; color: white; margin-top: 30px; justify-content: center; }

/* ==================== CONTACT ==================== */
.contact { padding: 100px 0; background: var(--bg-section); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrapper { background: var(--bg-white); border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-card); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 20px; border: 2px solid var(--bg-section); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; transition: var(--transition); background: var(--bg-warm); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background: var(--bg-white); box-shadow: 0 0 0 3px rgba(75,191,180,0.2); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card { display: flex; gap: 20px; padding: 28px; background: var(--bg-white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: all 0.35s ease; border: 2px solid transparent; }
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-light); }
.contact-icon { width: 56px; height: 56px; min-width: 56px; border-radius: 16px; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; }
.contact-text h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-text p { font-size: 0.9rem; color: var(--text-medium); }
.contact-text a { color: var(--primary); text-decoration: none; }

/* ==================== LOQOS TV ==================== */
.tv-section { background: var(--text-dark); border-radius: 40px; margin: 80px auto; max-width: 1240px; padding: 60px; color: white; position: relative; overflow: hidden; }
.tv-section::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(75,191,180,0.15) 0%, transparent 70%); top: -100px; right: -50px; }
.tv-section .section-label { color: var(--primary); position: relative; z-index: 1; clip-path: none !important; }
.tv-section .section-title { color: white; position: relative; z-index: 1; clip-path: none !important; }
.tv-section .section-subtitle { color: rgba(255,255,255,0.6); position: relative; z-index: 1; clip-path: none !important; }
.tv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; position: relative; z-index: 1; }
.tv-card { background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); cursor: pointer; text-decoration: none; }
.tv-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: var(--primary); }
.tv-card-thumb { height: 180px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.tv-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; position: absolute; top: 0; left: 0; z-index: 1; }
.tv-card:hover .tv-card-thumb img { transform: scale(1.05); }
.tv-card-thumb::after { content: '\25B6'; width: 56px; height: 56px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; transition: var(--transition); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; opacity: 0.9; }
.tv-card:hover .tv-card-thumb::after { transform: translate(-50%, -50%) scale(1.1); background: var(--primary-dark); opacity: 1; }
.tv-card-info { padding: 18px; }
.tv-card-info h4 { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.tv-card-info span { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ==================== FOOTER ==================== */
.footer { background: #1a2a2e; color: white; padding: 80px 0 0; overflow-x: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer *, .footer *::before, .footer *::after { box-sizing: border-box; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 16px; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); text-decoration: none; }
.footer-socials a:hover { background: var(--primary); color: white; }
.footer-col h4 { font-size: 1rem; margin-bottom: 20px; font-weight: 600; color: rgba(255,255,255,0.9); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--primary-light); }
.footer-newsletter input { width: 100%; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); color: white; font-size: 0.9rem; margin-bottom: 12px; font-family: inherit; outline: none; box-sizing: border-box; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { border-color: var(--primary); }
.footer-bottom { padding: 24px 0; text-align: center; color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: white; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.4); text-decoration: none; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ==================== ANIMATIONS ==================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); z-index: 9999; transition: width 0.1s linear; }
.back-to-top { position: fixed; bottom: 100px; right: 28px; z-index: 998; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: white; border: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(75,191,180,0.3); opacity: 0; transform: translateY(20px); transition: var(--transition); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.nav-links a.active-link { background: var(--primary-bg) !important; color: var(--primary-dark) !important; }
.text-reveal-target { clip-path: inset(0 100% 0 0); transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.text-reveal-target.text-revealed { clip-path: inset(0 0% 0 0); }
/* Hero elements always visible — no waiting for JS */
.service-hero .section-title,
.service-hero .section-label,
.service-hero .section-subtitle,
.service-hero p,
.hero-content .section-title,
.hero-content .section-label,
.hero-content .section-subtitle,
.hero .section-title,
.hero .section-label {
    clip-path: none !important;
}
/* noscript fallback — show everything if JS fails */
.no-js .text-reveal-target { clip-path: inset(0 0% 0 0) !important; }
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.service-card, .therapy-card, .branch-card { will-change: transform; transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ==================== BRANCH PAGE ==================== */
.branch-hero { min-height: 70vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 100px; padding-bottom: 80px; background: linear-gradient(160deg, var(--bg-warm) 0%, var(--primary-bg) 50%, var(--bg-warm) 100%); }
.branch-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(75,191,180,0.12) 0%, transparent 70%); border-radius: 50%; z-index: 0; }
.branch-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.branch-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
.branch-hero-content h1 .highlight { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.branch-hero-content p { font-size: 1.15rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.branch-hero-content .hero-meta { display: flex; gap: 28px; margin-bottom: 36px; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item i { width: 40px; height: 40px; border-radius: 12px; background: var(--primary-bg); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.hero-meta-item span { font-size: 0.9rem; color: var(--text-medium); }
.hero-meta-item strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.branch-hero-visual { position: relative; }
.branch-hero-visual img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.branch-hero-badge { position: absolute; bottom: -20px; left: 30px; background: var(--bg-glass); backdrop-filter: blur(16px); padding: 18px 28px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; animation: float 6s ease-in-out infinite; }
.branch-hero-badge .badge-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; }
.branch-hero-badge strong { font-size: 1.4rem; display: block; }
.branch-hero-badge span { font-size: 0.82rem; color: var(--text-medium); }

/* Branch about, services, team, reviews, map, contact */
.branch-about { padding: 100px 0; background: var(--bg-section); position: relative; overflow: hidden; }
.branch-about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary-light), transparent); }
.branch-about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-features { margin-top: 30px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.about-feature-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; }
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.9rem; color: var(--text-medium); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: transform 0.6s ease; }
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid img:first-child { grid-row: 1 / 3; height: 100%; }

.branch-services { padding: 100px 0; background: var(--bg-white); }
.branch-services-header { text-align: center; margin-bottom: 60px; }
.branch-services-header .section-subtitle { margin: 0 auto; }
.branch-services .service-card { text-align: center; padding: 36px 28px; }
.service-icon { width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary-bg), rgba(75,191,180,0.15)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }

.branch-team { padding: 100px 0; background: linear-gradient(160deg, var(--bg-section) 0%, var(--primary-bg) 100%); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-header .section-subtitle { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { cursor: pointer; background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; transition: all 0.35s ease; box-shadow: var(--shadow-card); border: 2px solid transparent; text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.team-photo { height: 260px; overflow: hidden; position: relative; background: var(--primary-bg); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo .team-overlay { display: none; }
.team-info { padding: 20px; }
.team-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-info span { font-size: 0.85rem; color: var(--primary); font-weight: 500; }
.team-info p { font-size: 0.82rem; color: var(--text-medium); margin-top: 8px; }

.branch-reviews { padding: 100px 0; background: var(--bg-white); }
.reviews-header { text-align: center; margin-bottom: 60px; }
.reviews-header .section-subtitle { margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: var(--bg-section); border-radius: var(--radius-md); padding: 32px; transition: all 0.35s ease; border: 2px solid transparent; position: relative; }
.review-card:hover { background: var(--bg-white); box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-4px); }
.review-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-bg), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1rem; }
.review-author-info strong { font-size: 0.9rem; display: block; }
.review-author-info span { font-size: 0.8rem; color: var(--text-light); }
.review-quote { position: absolute; top: 20px; right: 24px; font-size: 3rem; color: var(--primary-bg); font-family: Georgia, serif; line-height: 1; }

.branch-map { padding: 100px 0; background: var(--bg-section); }
.map-header { text-align: center; margin-bottom: 60px; }
.map-header .section-subtitle { margin: 0 auto; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 450px; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.map-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.map-info-card { display: flex; gap: 16px; padding: 24px; background: var(--bg-white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: all 0.35s ease; border: 2px solid transparent; }
.map-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-light); }
.map-info-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; }
.map-info-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.map-info-text p { font-size: 0.88rem; color: var(--text-medium); }
.map-info-text a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* ==================== BRANCH ABOUT FEATURES ==================== */
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; }
.about-feature h4 { font-size: 0.95rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-medium); line-height: 1.6; }

/* ==================== BRANCH CONTACT ==================== */
.branch-contact { padding: 100px 0; background: var(--bg-white); }
.branch-contact .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
.contact-form-wrapper .section-label { margin-bottom: 8px; }
.contact-form-wrapper .section-title { margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--text-medium); margin-bottom: 32px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border-color, #e8e8e8); border-radius: var(--radius-sm); font-size: 0.92rem; font-family: inherit; transition: var(--transition); background: var(--bg-section); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); outline: none; background: var(--bg-white); }
.contact-form textarea { resize: vertical; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--bg-section); border-radius: var(--radius-sm); transition: all 0.35s ease; border: 2px solid transparent; }
.contact-info-card:hover { background: var(--bg-white); box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; }
.contact-info-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-medium); }
.contact-info-card a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* ==================== SERVICE PAGE ==================== */
.breadcrumb { margin-top: 70px; padding: 20px 0; font-size: 0.85rem; color: var(--text-medium); }
.breadcrumb a { color: var(--primary); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary-dark); }
.service-hero { padding: 60px 0; background: var(--bg-section); }
.hero-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { margin-bottom: 16px; }
.hero-text p { color: var(--text-medium); margin-bottom: 32px; font-size: 1.05rem; }
.hero-image { background: var(--primary-bg); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.service-content { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.content-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 20px; }
.content-text p { color: var(--text-medium); margin-bottom: 16px; line-height: 1.8; }
.content-text ul { list-style: none; margin-left: 0; }
.content-text li { color: var(--text-medium); margin-bottom: 12px; padding-left: 24px; position: relative; }
.content-text li::before { content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 600; }
.benefits { background: var(--primary-bg); padding: 60px 0; margin: 60px 0; border-radius: var(--radius-lg); }
.benefits-header { text-align: center; margin-bottom: 48px; }
.benefits-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.benefit-card { background: var(--bg-white); padding: 32px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-card); transition: var(--transition); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-dark); }
.benefit-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.6; }
.appointment-section { padding: 80px 0; background: var(--bg-section); }
.appointment-wrapper { max-width: 700px; margin: 0 auto; background: var(--bg-white); border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-card); }
.appointment-wrapper h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 8px; }
.appointment-wrapper > p { color: var(--text-medium); margin-bottom: 32px; font-size: 0.95rem; }
.form-submit { width: 100%; margin-top: 24px; justify-content: center; }

/* ==================== DOCTOR PAGE ==================== */
.breadcrumb-page { padding: 100px 0 0; background: var(--bg-section); }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-medium); padding: 16px 0; }
.breadcrumb-nav a { color: var(--primary); text-decoration: none; font-weight: 500; }
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav i { font-size: 0.7rem; color: var(--text-light); }
.doctor-hero { padding: 40px 0 80px; background: linear-gradient(160deg, var(--bg-section) 0%, var(--primary-bg) 40%, var(--bg-warm) 100%); position: relative; overflow: hidden; }
.doctor-hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(75,191,180,0.08) 0%, transparent 70%); border-radius: 50%; }
.doctor-hero .container { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.doctor-photo-wrapper { position: sticky; top: 100px; }
.doctor-photo-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid rgba(75,191,180,0.1); }
.doctor-photo { width: 100%; height: 420px; object-fit: cover; object-position: top center; display: block; }
.doctor-photo-info { padding: 28px; text-align: center; }
.doctor-photo-info h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.doctor-photo-info .role { display: inline-block; background: var(--primary-bg); color: var(--primary-dark); padding: 6px 20px; border-radius: 30px; font-size: 0.88rem; font-weight: 600; margin-bottom: 16px; }
.doctor-social { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.doctor-social a { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-section); display: flex; align-items: center; justify-content: center; color: var(--text-medium); font-size: 1rem; transition: var(--transition); text-decoration: none; }
.doctor-social a:hover { background: var(--primary); color: white; }
.doctor-contact-btn { display: flex; gap: 10px; margin-top: 20px; }
.doctor-contact-btn .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 12px 16px; }
.doctor-content { padding-top: 10px; }
.doctor-badge-row { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.doctor-badge { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--radius-sm); background: var(--bg-white); box-shadow: var(--shadow-sm); border: 1px solid rgba(75,191,180,0.1); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); cursor: default; }
.doctor-badge:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(75,191,180,0.2); border-color: var(--primary-light); }
.doctor-badge i { width: 36px; height: 36px; border-radius: 10px; background: var(--primary-bg); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.doctor-badge span { font-size: 0.85rem; color: var(--text-medium); }
.doctor-badge strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.section-block { margin-bottom: 40px; }
.section-block-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 16px; color: var(--text-dark); display: flex; align-items: center; gap: 12px; }
.section-block-title i { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.section-block p { font-size: 1rem; color: var(--text-medium); line-height: 1.9; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(180deg, var(--primary), var(--primary-light), transparent); }
.timeline-item { position: relative; margin-bottom: 28px; padding-left: 24px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid var(--primary-bg); box-shadow: 0 0 0 3px var(--primary); }
.timeline-item .year { font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-medium); }
.skills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag { padding: 10px 22px; border-radius: 30px; font-size: 0.88rem; font-weight: 500; background: var(--bg-white); color: var(--text-dark); box-shadow: var(--shadow-sm); border: 1px solid rgba(75,191,180,0.1); transition: var(--transition); }
.skill-tag:hover { background: var(--primary-bg); color: var(--primary-dark); border-color: var(--primary-light); }
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cert-card { display: flex; gap: 14px; padding: 20px; background: var(--bg-white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 1px solid rgba(75,191,180,0.08); transition: var(--transition); }
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--primary-light); }
.cert-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; }
.cert-card h5 { font-size: 0.92rem; margin-bottom: 2px; }
.cert-card span { font-size: 0.8rem; color: var(--text-medium); }
.doctor-quote { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-md); padding: 40px; color: white; position: relative; overflow: hidden; margin: 40px 0; }
.doctor-quote::before { content: '\201C'; position: absolute; top: -10px; left: 20px; font-size: 8rem; opacity: 0.15; font-family: Georgia, serif; line-height: 1; }
.doctor-quote p { font-size: 1.15rem; line-height: 1.8; color: white; font-style: italic; position: relative; z-index: 1; }
.doctor-quote .quote-author { margin-top: 16px; font-style: normal; font-weight: 600; font-size: 0.95rem; opacity: 0.9; }
.booking-section { padding: 80px 0; background: var(--bg-section); }
.booking-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.booking-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; }
.booking-info h2 .highlight { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.booking-info p { color: var(--text-medium); margin-bottom: 28px; font-size: 1.05rem; }
.booking-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.booking-feature { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-dark); }
.booking-feature i { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-bg); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.booking-form .form-group { margin-bottom: 16px; }
.booking-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--bg-section); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; transition: var(--transition); background: var(--bg-section); outline: none; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--primary); background: var(--bg-white); box-shadow: 0 0 0 3px rgba(75,191,180,0.15); }
.booking-form textarea { min-height: 80px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ==================== CAREERS PAGE ==================== */
.careers-hero { margin-top: 70px; padding: 80px 0 80px; background: url('images/careers-hero.jpg') center 30%/cover no-repeat; text-align: center; position: relative; overflow: hidden; }
.careers-hero::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.55); backdrop-filter: blur(2px); }
.careers-hero .container { position: relative; z-index: 1; }
.careers-hero .section-subtitle { margin: 0 auto; }
.vacancies { padding: 80px 0; }
.vacancy-list { display: flex; flex-direction: column; gap: 16px; }
.vacancy-item { display: flex; align-items: center; justify-content: space-between; background: var(--bg-white); border: 1px solid #eef3f2; border-radius: var(--radius-sm); padding: 24px 32px; transition: var(--transition); gap: 20px; }
.vacancy-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.vacancy-apply { padding: 10px 24px; border-radius: 60px; border: none; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: inherit; text-decoration: none; box-shadow: 0 4px 15px rgba(75,191,180,0.25); }
.apply-section { padding: 80px 0; background: var(--bg-section); }
.apply-wrapper { max-width: 700px; margin: 0 auto; background: var(--bg-white); border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-card); }
.file-upload { border: 2px dashed #d0dbd8; border-radius: var(--radius-sm); padding: 24px; text-align: center; cursor: pointer; transition: var(--transition); position: relative; }

/* ==================== TEAM PAGE ==================== */
.team-page-hero { margin-top: 70px; padding: 80px 0; background: linear-gradient(160deg, var(--bg-warm) 0%, var(--primary-bg) 50%, var(--bg-warm) 100%); text-align: center; position: relative; overflow: hidden; }
.hero-counter { display: flex; justify-content: center; gap: 40px; margin-top: 40px; }
.counter-item { text-align: center; }
.counter-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.counter-label { font-size: 0.9rem; color: var(--text-medium); margin-top: 4px; }
.leadership-section { padding: 80px 0; background: var(--bg-white); }
.ceo-card { max-width: 320px; margin: 0 auto; background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--transition); }
.ceo-card:hover { transform: translateY(-8px); }
.ceo-card-image { position: relative; height: 380px; overflow: hidden; }
.ceo-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ceo-card-overlay { position: absolute; inset: 0; background: rgba(75,191,180,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.ceo-card:hover .ceo-card-overlay { opacity: 1; }
.ceo-card-content { padding: 20px; text-align: center; }
.ceo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; }
.ceo-role { font-size: 0.9rem; color: var(--primary); margin-top: 4px; }
.branch-leaders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.filter-section { padding: 40px 0; background: var(--bg-section); position: sticky; top: 60px; z-index: 100; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.filter-tab { padding: 8px 20px; border-radius: 30px; border: 2px solid var(--bg-white); background: var(--bg-white); cursor: pointer; font-weight: 500; font-size: 0.85rem; transition: var(--transition); font-family: inherit; color: var(--text-medium); }
.filter-tab.active, .filter-tab:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.team-grid-section { padding: 60px 0; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin-inline: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .about .container { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .contact .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tv-grid { grid-template-columns: repeat(2, 1fr); }
    .tv-section { margin: 40px 24px; padding: 40px; }
    .branch-hero .container { grid-template-columns: 1fr; text-align: center; }
    .branch-hero-content p { margin-inline: auto; }
    .branch-hero-content .hero-meta { justify-content: center; }
    .branch-about .container { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .branch-leaders-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .map-info-row { grid-template-columns: 1fr; }
    .branch-contact .container { grid-template-columns: 1fr; }
    .doctor-hero .container { grid-template-columns: 1fr; }
    .doctor-photo-wrapper { position: static; max-width: 400px; margin: 0 auto; }
    .booking-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero .container { gap: 30px; padding-top: 80px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-image-wrapper img { height: 280px; border-radius: 20px; }
    .hero-float-card { display: none; }
    .hero-buttons .btn { padding: 14px 24px; font-size: 0.88rem; width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.75rem; }
    .stat-item { padding: 16px 8px; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.95rem; }
    .about .container { gap: 40px; }
    .about-image img { height: 300px; }
    .services-grid { grid-template-columns: 1fr; }
    .branches-grid { grid-template-columns: 1fr; }
    .therapies-grid { grid-template-columns: 1fr; }
    .therapy-card { flex-direction: column; text-align: center; padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .tv-grid { grid-template-columns: 1fr; }
    .tv-section { border-radius: 24px; padding: 30px 20px; margin: 40px 16px; }
    .cta-section { padding: 60px 0; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-phone { font-size: 1.2rem; }
    .contact-form-wrapper { padding: 28px 20px; }
    .hero-badge { font-size: 11px; padding: 6px 14px; }
    .container { padding: 0 16px; }
    .about { padding: 60px 0; }
    .services, .therapies { padding: 60px 0; }
    .branches { padding: 60px 0; }
    .contact { padding: 60px 0; }
    .footer { padding: 50px 0 0; overflow-x: hidden; }
    .footer-grid { gap: 28px; }
    .footer-newsletter input { padding: 12px 14px; }
    .footer-socials { flex-wrap: wrap; }
    .branch-img { height: 160px; }
    .branch-hero .container { gap: 30px; }
    .branch-hero-content h1 { font-size: 2rem; }
    .branch-hero-visual img { height: 280px; }
    .branch-hero-badge { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img:first-child { grid-row: auto; height: 220px; }
    .branch-about, .branch-services, .branch-team, .branch-reviews, .branch-map, .branch-contact { padding: 60px 0; }
    .doctor-badge-row { flex-direction: column; }
    .cert-grid { grid-template-columns: 1fr; }
    .booking-card { padding: 28px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
    .content-text h2 { font-size: 1.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .appointment-wrapper { padding: 28px 20px; }
    .hero-content-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .branches-grid { gap: 14px; }
    .lang-switcher { gap: 2px; padding: 2px; }
    .lang-btn { padding: 5px 10px; font-size: 0.72rem; }
    .branch-hero-content h1 { font-size: 1.7rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .branch-leaders-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .team-info h4 { font-size: 0.85rem; }
    .team-info span { font-size: 0.75rem; }
    .team-info p { font-size: 0.7rem; }
}
/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-section);
}
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
    font-family: inherit;
}
.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .faq-section { padding: 50px 0; }
    .faq-question { padding: 16px 18px; font-size: 15px; }
    .faq-item.active .faq-answer { padding: 0 18px 16px; }
}
