/* ============================================
   DESIGN TOKENS — Apple-inspired
   ============================================ */
:root {
    --primary: #1d1d1f;
    --primary-light: #f0f2f8;
    --accent: #004c96;
    --accent-hover: #003d7a;
    --teal: #004c96;
    --teal-light: #e8f0fa;
    --bg-white: #fffcfd;
    --bg-light: #fdf8fa;
    --bg-section: #faf0f5;
    --bg-dark: #1a1c24;
    --text-primary: #1d1d1f;
    --text-secondary: #5e6577;
    --text-tertiary: #7d849a;
    --text-inverse: #f0f2f8;
    --border: #c8cdd9;
    --border-light: #dfe2ec;
    --shadow-sm: 0 1px 3px rgba(30, 50, 90, 0.05);
    --shadow-md: 0 4px 12px rgba(30, 50, 90, 0.07);
    --shadow-lg: 0 12px 40px rgba(30, 50, 90, 0.09);
    --shadow-xl: 0 20px 60px rgba(30, 50, 90, 0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern';
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   NAVBAR — Apple style frosted glass
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(240, 242, 248, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 46px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 980px;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    background: rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--bg-white);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 980px;
    background: var(--primary);
    letter-spacing: -0.01em;
}

.nav-phone:hover {
    opacity: 0.85;
}

.nav-whatsapp {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #30d158;
    color: var(--bg-white);
    font-size: 1.05rem;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    transform: scale(1.08);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 18px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   HERO — Clean Apple feel
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bg-white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal-light) 0%, rgba(250, 240, 245, 0.5) 100%);
    border-radius: 0 0 0 60%;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--teal-light);
    border-radius: 980px;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.text-accent {
    color: var(--teal);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 0.92rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Buttons — Apple style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 980px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--teal);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #003a73;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-section);
    border-color: var(--text-tertiary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 36px;
}

.hero-stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.stat-plus {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-image-decoration {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator a {
    color: var(--text-tertiary);
    font-size: 1rem;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-section);
}

.section-dark {
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 980px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-dark .section-tag {
    background: rgba(0, 76, 150, 0.2);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.section-dark .section-title {
    color: var(--text-inverse);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.section-dark .section-desc {
    color: var(--text-tertiary);
}

/* ============================================
   ABOUT / HAKKIMDA
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.about-intro strong {
    color: var(--teal);
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 28px;
    margin-bottom: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 1.5px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
}

.timeline-year {
    display: inline-block;
    padding: 2px 10px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 980px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* About Badges */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 980px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
}

.badge i {
    color: var(--teal);
    font-size: 0.82rem;
}

/* ============================================
   SPECIALTIES — Cards linking to separate pages
   ============================================ */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.specialty-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.specialty-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.specialty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-img img {
    transform: scale(1.04);
}

.specialty-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.specialty-body {
    padding: 22px;
}

.specialty-body h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.specialty-body h3 small {
    font-size: 0.7em;
    color: var(--teal);
    font-weight: 500;
}

.specialty-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 14px;
}

.specialty-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}

.specialty-link:hover {
    gap: 10px;
}

/* ============================================
   VIDEOS — Horizontal Scroll Carousel
   ============================================ */
.videos-wrapper {
    position: relative;
}

.videos-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.videos-scroll::-webkit-scrollbar {
    height: 6px;
}

.videos-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.videos-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.video-card {
    min-width: 480px;
    max-width: 520px;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-white);
    transition: var(--transition);
}

.videos-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--text-tertiary);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
}

.videos-yt-link:hover {
    color: #ff0000;
}

.videos-yt-link img {
    height: 22px;
    width: auto;
    display: inline-block;
}

.video-card:first-child {
    margin-left: 0;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-thumbnail:hover img {
    transform: scale(1.03);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail:hover .video-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card h3 {
    padding: 14px 4px 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.video-scroll-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.video-scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-scroll-btn:hover {
    background: var(--teal);
    color: var(--bg-white);
    border-color: var(--teal);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border);
}

.faq-item[open] {
    border-color: var(--teal);
    background: rgba(0, 76, 150, 0.02);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--teal);
    transition: var(--transition);
    font-size: 0.8rem;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-card a,
.contact-card p {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.45;
}

.contact-card a:hover {
    color: var(--teal);
}

.contact-socials {
    display: flex;
    gap: 10px;
    padding-top: 8px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-section);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.contact-socials a:hover {
    background: var(--teal);
    color: var(--bg-white);
    border-color: var(--teal);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    padding: 56px 0 0;
    color: var(--text-tertiary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 46px;
    margin-bottom: 14px;
    filter: brightness(10);
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-inverse);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-contact p {
    font-size: 0.82rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-disclaimer {
    margin-top: 6px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #30d158;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(48, 209, 88, 0.35);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(48, 209, 88, 0.4);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SPECIALTY DETAIL PAGES
   ============================================ */
.specialty-page {
    padding: 80px 0 60px;
}

.specialty-page-hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding: 40px 0 36px;
    border-bottom: 1px solid var(--border-light);
}

.specialty-page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.specialty-page-hero .breadcrumb a {
    color: var(--teal);
}

.specialty-page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.specialty-page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.1;
}

.specialty-page-hero .page-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.specialty-hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1/1;
}

.specialty-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-page-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 48px;
    align-items: start;
}

.specialty-page-content {
    max-width: 720px;
}

.specialty-page-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 36px 0 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.specialty-page-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.specialty-page-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--teal);
    margin: 24px 0 8px;
}

.specialty-page-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.specialty-page-content ul {
    padding-left: 18px;
    margin-bottom: 14px;
}

.specialty-page-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    list-style: disc;
    margin-bottom: 4px;
}

.specialty-page-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-image {
    margin: 24px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.content-image img {
    width: 100%;
    display: block;
}

.content-image figcaption {
    padding: 10px 16px;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    background: var(--bg-section);
    text-align: center;
}

/* Sidebar */
.specialty-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.sidebar-card h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--teal);
    color: var(--bg-white);
    border-color: var(--teal);
}

.sidebar-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--teal);
    color: var(--bg-white);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-cta:hover {
    background: #003a73;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 32px;
    transition: var(--transition);
}

.back-link:hover {
    gap: 10px;
}

/* ============================================
   RESPONSIVE — Mobile & Tablet
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image-frame {
        width: 300px;
        height: 380px;
    }

    .hero-image-decoration {
        display: none;
    }

    .hero::after {
        width: 100%;
        border-radius: 0 0 0 40%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-badges {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .specialty-page-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .specialty-hero-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .specialty-page-layout {
        grid-template-columns: 1fr;
    }

    .specialty-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 7px 10px;
    }

    .navbar-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(240, 242, 248, 0.97);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
        padding: 12px 24px 20px;
    }

    .navbar-nav.active .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .navbar-nav.active .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-sm);
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-image-frame {
        width: 240px;
        height: 310px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-grid {
        gap: 32px;
    }

    .about-image img {
        max-width: 260px;
    }

    .timeline {
        padding-left: 22px;
    }

    .contact-card {
        padding: 14px 16px;
    }

    .video-card {
        min-width: 340px;
    }

    .specialty-page {
        padding: 72px 0 48px;
    }

    .specialty-hero-img {
        max-width: 260px;
    }

    .sidebar-links a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        width: 200px;
        height: 260px;
    }

    .hero {
        padding: 100px 0 48px;
    }

    .btn {
        padding: 11px 22px;
        font-size: 0.84rem;
    }

    .hero-badge {
        font-size: 0.65rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat {
        text-align: center;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .faq-item summary {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .about-badges {
        gap: 8px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.72rem;
    }

    .video-card {
        min-width: 290px;
    }

    .specialty-page-hero h1 {
        font-size: 1.6rem;
    }

    .specialty-hero-img {
        max-width: 200px;
    }
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.blog-read-more {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--teal);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post h1 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.blog-post h2 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.blog-post h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.blog-post ul {
    padding-left: 20px;
    margin: 12px 0;
}

.blog-post ul li {
    margin-bottom: 6px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post h1 {
        font-size: 1.4rem;
    }
}