:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #e0e7ff;
    --secondary-color: #14b8a6;
    --secondary-light: #ccfbf1;
    --accent-color: #f472b6;
    --error-color: #ef4444;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-surface: #ffffff;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --cream: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --indigo-soft: #e0e7ff;
    --indigo-text: #4f46e5
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px
}

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10000
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    width: 0%;
    border-radius: 0 4px 4px 0;
    transition: width 0.15s ease-out
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition)
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    letter-spacing: -0.03em
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1))
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    font-size: 1rem
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color)
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translateX(-50%) scale(0);
    transition: var(--transition);
    opacity: 0
}

.nav-menu a:not(.btn-primary):hover::after,
.nav-menu a.active:not(.btn-primary)::after {
    transform: translateX(-50%) scale(1);
    opacity: 1
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.btn-primary,
.btn-secondary,
.btn-large,
.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-sm)
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
    color: var(--white)
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-dark);
    box-shadow: inset 0 0 0 2px var(--text-light)
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 2px var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px)
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.15rem
}

.appointment-btn {
    padding: 10px 28px;
    font-size: 1rem;
    margin-left: 10px
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: radial-gradient(circle at top right, var(--primary-light), transparent 50%), radial-gradient(circle at bottom left, var(--secondary-light), transparent 50%);
    position: relative;
    overflow: hidden
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 20px;
    background: var(--primary-light);
    padding: 8px 16px;
    border-radius: var(--radius-pill)
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.15
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 90%
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg)
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.15;
    filter: blur(24px)
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition)
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02)
}

section {
    padding: 100px 0
}

.services-section {
    background: var(--bg-surface)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch
}

.service-card {
    background: var(--bg-light);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition)
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-surface)
}

.service-card:hover::before {
    opacity: 1
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm)
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    line-height: 1.3
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.6
}

.service-card .read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition)
}

.service-card .read-more:hover {
    gap: 10px;
    color: var(--primary-dark)
}

.section-header {
    margin-bottom: 60px
}

.section-header.centered {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 12px
}

.section-header p {
    color: var(--text-medium);
    font-size: 1rem
}

.about-preview {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--primary-light) 100%)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-image {
    position: relative
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg)
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color)
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.experience-badge .text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium)
}

.blog-ozet {
    background: var(--bg-light)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px
}

.blog-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background-color: #f8fafc
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08)
}

.blog-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

.blog-card-content {
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.blog-card-content time {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500
}

.blog-card-author {
    display: block;
    margin: 6px 0 0 0;
    font-size: 0.97rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 2px
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin-top: 8px;
    margin-bottom: 12px;
    line-height: 1.4
}

.blog-card-content .read-more {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.blog-card-content .read-more:hover {
    gap: 12px;
    color: var(--primary-dark)
}

.view-all {
    text-align: center;
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center
}

.view-all .read-more {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.view-all .read-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    gap: 12px
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0
}

.page-btn {
    padding: 10px 18px;
    border: none;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition);
    box-shadow: var(--shadow-sm)
}

.page-btn:hover:not(:disabled),
.page-btn.active {
    background: var(--primary-color);
    color: var(--white)
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    padding: 100px 24px;
    color: var(--white)
}

.cta-content {
    max-width: 700px;
    margin: 0 auto
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 24px
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px
}

.cta-section .btn-primary {
    background: var(--bg-surface);
    color: var(--primary-dark)
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px)
}

.page-header {
    background: var(--bg-surface);
    padding: 100px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 12px
}

.blog-categories {
    padding: 32px 0;
    background: var(--bg-surface);
    position: sticky;
    top: 75px;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 30px 0 20px;
    width: 100%
}

.category-btn {
    background-color: var(--bg-surface);
    color: var(--text-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02)
}

.category-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px)
}

.category-btn.active {
    background-color: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2)
}

.blog-detail-main {
    padding: 140px 24px 80px;
    background: radial-gradient(circle at top, var(--primary-light) 0%, var(--bg-light) 50%);
    min-height: 100vh
}

.post-detail-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.post-image-wrapper {
    width: 100%;
    height: 480px;
    position: relative;
    background: #f1f5f9
}

.post-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.post-detail-content-wrap {
    padding: 60px 80px
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 40px
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500
}

.post-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase
}

.post-header h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.03em
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium)
}

.post-content h2,
.post-content h3 {
    color: var(--text-dark);
    margin: 40px 0 20px;
    line-height: 1.4
}

.post-content p {
    margin-bottom: 24px
}

.post-content ul,
.post-content ol {
    margin-bottom: 24px;
    padding-left: 24px
}

.post-content li {
    margin-bottom: 12px
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center
}

.services-detail {
    background: var(--bg-light)
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch
}

.service-detail-card {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    scroll-margin-top: 80px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.service-icon-large {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 24px;
    background: var(--primary-light);
    border-radius: 18px;
    min-height: 80px
}

.service-detail-card h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.3
}

.service-detail-card>p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1
}

.service-features {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto
}

.service-features li {
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark)
}

.service-features li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-top: 2px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 6L9 17L4 12" stroke="%236366f1" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: contain
}

.about-page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--cream) 100%);
    border-bottom: 1px solid var(--stone-200)
}

.about-page-header .container {
    max-width: 1000px
}

.about-page-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--stone-900);
    margin-bottom: 24px
}

.about-page-header .lead {
    font-size: 1.35rem;
    color: var(--stone-600);
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400
}

.about-page-header .header-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 32px;
    border-radius: 2px
}

.about-hero-v2 {
    padding: 80px 0;
    background: var(--cream)
}

.about-hero-v2 .container {
    max-width: 1200px
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-hero-image {
    position: relative
}

.about-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08)
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--stone-300);
    border-radius: 24px;
    z-index: -1
}

.about-hero-content {
    padding-right: 40px
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--indigo-text);
    margin-bottom: 24px
}

.about-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--indigo-text)
}

.about-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--stone-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--stone-600);
    margin-bottom: 20px
}

.about-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--stone-200)
}

.about-stat-item {
    flex: 1;
    padding: 0 32px;
    position: relative
}

.about-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--stone-200)
}

.about-stat-item:first-child {
    padding-left: 0
}

.about-stat-item:last-child {
    padding-right: 0
}

.about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--stone-900);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--stone-600);
    font-weight: 500
}

.about-stat-sublabel {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px
}

.about-story-v2 {
    padding: 120px 0;
    background: var(--bg-surface)
}

.about-story-v2 .container {
    max-width: 1000px
}

.about-story-header {
    margin-bottom: 60px
}

.about-story-header h3 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px
}

.about-story-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--stone-900);
    letter-spacing: -0.02em;
    line-height: 1.3
}

.about-story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

.about-story-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--stone-600)
}

.about-story-body .highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--stone-800);
    font-weight: 500;
    padding-left: 24px;
    border-left: 3px solid var(--primary-color);
    margin-top: 32px
}

.about-philosophy-v2 {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--bg-surface) 100%)
}

.about-philosophy-v2 .container {
    max-width: 1100px
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center
}

.about-philosophy-v2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--stone-900);
    margin-bottom: 64px;
    letter-spacing: -0.02em
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--stone-200);
    border-radius: 20px;
    overflow: hidden
}

.philosophy-item {
    background: var(--bg-surface);
    padding: 48px 40px;
    transition: all 0.4s ease
}

.philosophy-item:hover {
    background: var(--cream)
}

.philosophy-item .phi-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 0.05em
}

.philosophy-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em
}

.philosophy-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-600)
}

.about-team-v2 {
    padding: 120px 0;
    background: var(--bg-surface)
}

.about-team-v2 .container {
    max-width: 1100px
}

.about-team-v2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--stone-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em
}

.about-team-v2 .section-subtitle {
    text-align: center;
    color: var(--stone-600);
    font-size: 1.1rem;
    margin-bottom: 64px
}

.team-profiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.team-profile {
    background: var(--cream);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--stone-200);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.team-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease
}

.team-profile:hover::before {
    transform: scaleX(1)
}

.team-profile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06)
}

.team-profile-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--indigo-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0
}

.team-profile:nth-child(2) .team-avatar {
    background: var(--secondary-light)
}

.team-profile-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 4px;
    letter-spacing: -0.01em
}

.team-profile-info .title {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px
}

.team-profile-info .edu {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5
}

.team-profile p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-600);
    margin-bottom: 24px
}

.btn-read-cv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--stone-900);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit
}

.btn-read-cv:hover {
    background: var(--primary-color);
    transform: translateY(-2px)
}

.about-credentials-v2 {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--cream) 100%)
}

.about-credentials-v2 .container {
    max-width: 800px
}

.about-credentials-v2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--stone-900);
    margin-bottom: 64px;
    letter-spacing: -0.02em
}

.timeline {
    position: relative;
    padding-left: 40px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--stone-300)
}

.timeline-item {
    position: relative;
    padding-bottom: 48px
}

.timeline-item:last-child {
    padding-bottom: 0
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid var(--primary-color);
    z-index: 2
}

.timeline-item:nth-child(2) .timeline-dot {
    border-color: var(--secondary-color)
}

.timeline-item:nth-child(3) .timeline-dot {
    border-color: var(--accent-color)
}

.timeline-content {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--stone-200);
    transition: all 0.3s ease
}

.timeline-content:hover {
    border-color: var(--stone-300);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04)
}

.timeline-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px
}

.timeline-item:nth-child(2) .timeline-tag {
    color: var(--secondary-color)
}

.timeline-item:nth-child(3) .timeline-tag {
    color: var(--accent-color)
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--stone-600);
    line-height: 1.6
}

.about-cta-v2 {
    padding: 100px 0;
    background: var(--stone-900);
    text-align: center
}

.about-cta-v2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em
}

.about-cta-v2 p {
    font-size: 1.1rem;
    color: var(--stone-300);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.about-cta-v2 .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--stone-900);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease
}

.about-cta-v2 .btn-cta:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px)
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal-content {
    background: var(--bg-surface);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1)
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-medium);
    transition: var(--transition)
}

.modal-close:hover {
    background: var(--error-color);
    color: var(--white);
    transform: rotate(90deg)
}

.contact-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    gap: 12px;
    text-decoration: none
}

.contact-option-card .icon {
    font-size: 2.2rem;
    line-height: 1
}

.contact-option-card .text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem
}

.contact-option-card.whatsapp:hover {
    background: #e8fbf0;
    border-color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.2)
}

.contact-option-card.whatsapp:hover .text {
    color: #1da851
}

.contact-option-card.phone:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2)
}

.contact-option-card.phone:hover .text {
    color: #2563eb
}

.contact-option-card.instagram:hover {
    background: #fdf2f8;
    border-color: #e1306c;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(225, 48, 108, 0.2)
}

.contact-option-card.instagram:hover .text {
    color: #be185d
}

.contact-option-card.mail:hover {
    background: #f1f5f9;
    border-color: #64748b;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(100, 116, 139, 0.2)
}

.contact-option-card.mail:hover .text {
    color: #475569
}

.modal-content.text-modal {
    max-width: 650px;
    padding: 48px;
    border-radius: 24px
}

.modal-bio-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.modal-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px
}

.modal-bio-header h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em
}

.modal-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.modal-bio-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
    text-align: left
}

.modal-bio-content p:last-child {
    margin-bottom: 0
}

.team-preview-section {
    padding: 100px 0;
    background: var(--bg-surface)
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px
}

.team-preview-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.team-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--bg-surface)
}

.team-preview-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem
}

.team-preview-card:nth-child(2) .team-preview-avatar {
    background: var(--secondary-light)
}

.team-preview-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px
}

.team-preview-title {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px
}

.team-preview-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px
}

.team-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition)
}

.team-preview-link:hover {
    gap: 12px;
    color: var(--primary-dark)
}

.footer {
    background: #0b1120;
    color: #e2e8f0;
    padding: 80px 0 32px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.3fr 1.1fr;
    gap: 48px;
    margin-bottom: 60px;
    align-items: start
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.4rem
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px
}

.footer h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px)
}

.footer-links a:hover::before {
    width: 100%
}

.footer-links:nth-child(3) ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    margin: 0
}

.footer-contact p a {
    color: #cbd5e1;
    transition: color 0.3s ease
}

.footer-contact p a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    text-align: center
}

.medical-disclaimer {
    font-size: 0.8rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 20px
}

.medical-disclaimer strong {
    color: #94a3b8;
    font-weight: 600
}

.footer-bottom p:last-child {
    font-size: 0.85rem;
    color: #64748b
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .hero-container,
    .about-grid,
    .about-hero-grid,
    .about-story-body {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
        order: -1
    }

    .blog-grid,
    .services-detail-grid,
    .team-preview-grid,
    .team-profiles {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 32px
    }

    .footer-brand p {
        max-width: 100%
    }

    .about-hero-image img {
        height: 400px
    }

    .about-hero-image::before {
        display: none
    }

    .about-hero-content {
        padding-right: 0
    }
}

@media (max-width:768px) {
    section {
        padding: 60px 0
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all
    }

    .nav-toggle {
        display: flex
    }

    .hero {
        padding: 120px 0 60px
    }

    .hero h1 {
        font-size: 3rem
    }

    .section-header h2 {
        font-size: 2.25rem
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
        margin-bottom: 16px
    }

    .service-card {
        padding: 24px 20px
    }

    .experience-badge {
        right: 10px;
        bottom: -20px;
        padding: 20px
    }

    .experience-badge .years {
        font-size: 2rem
    }

    .appointment-btn {
        margin-left: 0;
        width: 100%;
        margin-top: 10px
    }

    .blog-detail-main {
        padding: 100px 16px 60px
    }

    .post-image-wrapper {
        height: 280px
    }

    .post-detail-content-wrap {
        padding: 40px 24px
    }

    .post-header h1 {
        font-size: 2.2rem
    }

    .post-content {
        font-size: 1.05rem
    }

    .service-detail-card {
        padding: 24px
    }

    .about-page-header {
        padding: 120px 0 40px
    }

    .about-stats {
        flex-direction: column;
        gap: 24px
    }

    .about-stat-item {
        padding: 0;
        text-align: center
    }

    .about-stat-item:not(:last-child)::after {
        display: none
    }

    .about-stat-item:not(:last-child) {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--stone-200)
    }

    .philosophy-grid {
        grid-template-columns: 1fr
    }

    .team-profile {
        padding: 32px
    }

    .timeline {
        padding-left: 32px
    }

    .timeline-dot {
        left: -32px;
        width: 14px;
        height: 14px
    }

    .footer {
        padding: 60px 0 24px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .footer-links:nth-child(3) ul {
        grid-template-columns: 1fr;
        align-items: center
    }

    .footer-links ul {
        align-items: center
    }

    .footer-contact p {
        justify-content: center
    }

    .footer-brand .logo {
        justify-content: center
    }

    .footer-brand p {
        margin: 0 auto
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 16px
    }

    html {
        font-size: 14px
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero p {
        font-size: 0.95rem
    }

    .section-header h2 {
        font-size: 1.5rem
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem
    }

    .contact-options-grid {
        grid-template-columns: 1fr
    }

    .modal-content,
    .modal-content.text-modal {
        padding: 32px 20px;
        margin: 12px
    }

    .team-profile {
        padding: 24px 16px
    }

    .philosophy-item {
        padding: 24px 16px
    }
}

@media (max-width:768px) {
    .modal-content {
        padding: 32px 20px !important;
        max-height: 85vh;
        overflow-y: auto
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .contact-option-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px 20px;
        gap: 16px;
        text-align: left
    }

    .contact-option-card .icon {
        font-size: 1.6rem
    }

    .contact-option-card .text {
        font-size: 0.95rem
    }
}

.blog-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    text-align: center;
    background: var(--bg-surface)
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px
}

.blog-hero p {
    color: var(--text-medium);
    margin-bottom: 24px;
    font-size: 1.1rem
}

@media (max-width:768px) {
    .blog-hero {
        padding-top: 120px !important
    }

    .blog-hero h1 {
        font-size: 2rem
    }

    .logo {
        font-size: 1.15rem !important;
        white-space: nowrap !important;
        gap: 6px
    }

    .logo-icon {
        font-size: 1.3rem !important
    }

    .navbar .container {
        padding: 0 16px !important
    }
}

@media (max-width:380px) {
    .logo {
        font-size: 1rem !important;
        gap: 4px
    }

    .logo-icon {
        font-size: 1.15rem !important
    }
}

@media (max-width:768px) {
    .category-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin: 20px 0
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        white-space: nowrap
    }
}

@media (max-width:768px) {
    .btn-primary:hover {
        transform: none !important;
        box-shadow: var(--shadow-sm) !important
    }

    .btn-secondary:hover {
        transform: none !important;
        box-shadow: inset 0 0 0 2px var(--text-light) !important;
        color: var(--text-dark) !important
    }

    .btn-primary:active,
    .btn-secondary:active,
    .appointment-btn:active,
    .nav-menu a:active {
        transform: scale(0.96) !important;
        transition: transform 0.1s ease !important
    }
}