/* ====================================
    LAZER DİŞ — Premium CSS Design System
   ==================================== */

:root {
    --navy: #0a1628;
    --navy-mid: #0f2044;
    --navy-light: #1a3060;
    --cyan: #00d4ff;
    --cyan-dark: #00a8cc;
    --cyan-glow: rgba(0, 212, 255, 0.15);
    --gold: #f0c040;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #64748b;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --red: #ef4444;
    --gradient-main: linear-gradient(135deg, #0a1628 0%, #1a3060 50%, #0f2044 100%);
    --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    --gradient-hero: linear-gradient(to bottom, rgba(10, 22, 40, 0.45) 0%, rgba(10, 22, 40, 0.25) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
    --shadow-cyan: 0 4px 20px rgba(0, 212, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ====================================
    PERFORMANCE OPTIMIZATIONS
   ==================================== */
/* Use composited (GPU-accelerated) transforms for animations */
.whatsapp-float,
.btn,
.service-card,
.testimonial-card,
.partner-card,
.doctor-card,
.tl-card,
.gal-arrow,
.faq-question {
    will-change: transform;
}

/* Hero video: tüm cihazlarda oynar */
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Reduce paint area for offscreen sections */
.services,
.testimonials,
.faq-section,
.partners,
.gallery,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================================
    FLOATING WHATSAPP BUTTON
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    font-weight: 600;
    font-size: 15px;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

/* ====================================
    NAVIGATION
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1.2;
}

.logo-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.08);
}

.nav-cta {
    background: var(--gradient-cyan) !important;
    color: var(--navy) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-cyan);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.45) !important;
}

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

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ====================================
    LANGUAGE SWITCHER
   ==================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 3px;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gradient-cyan);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.35);
}

.lang-btn:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* ====================================
    HERO SECTION
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 24px;
    padding-top: 120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: fadeUp 0.8s ease backwards;
}

.hero-doctor-badge {
    animation: fadeUp 0.8s ease backwards 0.2s;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-anim 1.5s ease-in-out infinite;
}

.pulse-dot.closed {
    background: #ef4444;
}

@keyframes pulse-anim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.gradient-text {
    color: #00e5ff;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

#rotator {
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 68px);
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) backwards 0.3s;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) backwards 0.5s;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp 0.8s ease backwards 0.8s;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    max-width: 480px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 0 28px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    animation: scroll-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

/* ====================================
    BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-main);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-cyan);
    color: var(--navy);
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.5);
    color: var(--navy);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.full-width {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
}

/* ====================================
    INFO BAR
   ==================================== */
.info-bar {
    background: var(--navy);
    padding: 20px 0;
}

.info-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.info-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.info-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cyan);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.info-cta svg {
    width: 16px;
    height: 16px;
}

.info-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
    color: var(--navy);
}

/* ====================================
    SECTION COMMON
   ==================================== */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--cyan-glow);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 520px;
    margin: 0 auto;
}

/* ====================================
    SERVICES
   ==================================== */
.services {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--cyan-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--cyan-dark);
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    background: var(--gradient-cyan);
    color: var(--navy);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan-dark);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--navy);
    letter-spacing: 0.5px;
}

/* ====================================
    ABOUT
   ==================================== */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 200px;
    height: 150px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-cyan);
    color: var(--navy);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: var(--shadow-cyan);
}

.about-badge-float svg {
    width: 20px;
    height: 20px;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 700;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-cyan);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
}

/* ====================================
    GALLERY
   ==================================== */
.gallery {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-item {
    background: #000;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* ====================================
    APPOINTMENT
   ==================================== */
.appointment {
    background: var(--gradient-main);
}

.appointment .section-badge {
    display: none;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.appointment-info h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.appointment-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    color: white;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.contact-option.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.1);
}

.contact-option.phone:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.08);
}

.contact-option.email:hover {
    border-color: rgba(240, 192, 64, 0.4);
    background: rgba(240, 192, 64, 0.08);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-option.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.2);
    color: var(--whatsapp);
}

.contact-option.phone .contact-icon {
    background: rgba(0, 212, 255, 0.15);
    color: var(--cyan);
}

.contact-option.email .contact-icon {
    background: rgba(240, 192, 64, 0.15);
    color: var(--gold);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-option strong {
    display: block;
    font-weight: 700;
    font-size: 15px;
}

.contact-option span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Appointment Form Card */
.appointment-form-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.form-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--gray-200);
}

.form-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.form-tab svg {
    width: 16px;
    height: 16px;
}

.form-tab.active {
    color: var(--navy);
    border-bottom-color: var(--cyan);
}

.form-tab:hover:not(.active) {
    background: var(--gray-100);
    color: var(--navy);
}

.appt-form {
    display: none;
    padding: 28px;
}

.appt-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--navy);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    background: white;
    box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 10px;
}

/* ====================================
    CONTACT / MAP
   ==================================== */
.contact-map {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: var(--cyan-glow);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gradient-cyan);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
}

.contact-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.5;
}

.map-link {
    font-size: 13px;
    color: var(--cyan-dark);
    font-weight: 600;
    display: inline-block;
    margin-top: 6px;
}

.contact-link {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
}

.contact-link:hover {
    color: var(--cyan-dark);
}

.map-container {
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.map-iframe {
    border: 0;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: block;
}

.map-open-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    white-space: nowrap;
}

.map-open-btn svg {
    width: 16px;
    height: 16px;
}

.map-open-btn:hover {
    background: var(--cyan-dark);
    color: white;
}

.whatsapp-cta-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.whatsapp-cta-box svg {
    width: 32px;
    height: 32px;
    color: var(--whatsapp);
    flex-shrink: 0;
}

.whatsapp-cta-box strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.whatsapp-cta-box p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.btn-wa {
    margin-left: auto;
    white-space: nowrap;
    background: var(--whatsapp);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
}

.btn-wa:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    color: white;
}

/* ====================================
    FOOTER
   ==================================== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background: var(--whatsapp);
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.footer-links ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact p svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact p a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ====================================
    MODAL
   ==================================== */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2000;
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1900;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal-backdrop.show {
    opacity: 1;
    pointer-events: all;
}

.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}

.modal h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
}

.modal p {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ====================================
    RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .map-container {
        height: 320px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right 0.3s ease;
        z-index: 800;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-cta {
        border-radius: var(--radius-sm) !important;
    }

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

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

    .gallery-item.large {
        grid-column: span 2;
    }

    .hero-stats {
        padding: 16px 20px;
    }

    .stat {
        padding: 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

    .info-bar-container {
        justify-content: center;
        gap: 20px;
    }

    .info-divider {
        display: none;
    }

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

    .whatsapp-cta-box {
        flex-wrap: wrap;
    }

    .btn-wa {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .stat-number {
        font-size: 22px;
    }

    .about-img-secondary {
        display: none;
    }

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

    .gallery-item.large {
        grid-column: span 1;
    }
}

/* ====================================
    ANIMATIONS
   ==================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card,
.contact-card,
.gallery-item {
    animation: fadeUp 0.5s ease both;
}

/* ====================================
    HERO DOCTOR BADGE
   ==================================== */
.hero-doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-doctor-badge svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
    flex-shrink: 0;
}

.hero-doctor-badge strong {
    color: var(--cyan);
}

/* ====================================
    ABOUT DOCTOR TAG
   ==================================== */
.about-doctor-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cyan-glow);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 20px;
}

.about-doctor-tag svg {
    width: 24px;
    height: 24px;
    color: var(--cyan-dark);
    flex-shrink: 0;
}

.about-doctor-tag strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.about-doctor-tag span {
    font-size: 13px;
    color: var(--cyan-dark);
    font-weight: 500;
}

/* ====================================
    DOCTOR SECTION
   ==================================== */
.doctor-section {
    background: var(--gray-100);
    padding: 96px 0;
}

.doctor-grid-wrap {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.doctor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .doctor-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
}


.doctor-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.doctor-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.doctor-photo-placeholder {
    width: 240px;
    height: 280px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.doctor-photo-placeholder svg {
    width: 100px;
    height: 100px;
    color: rgba(0, 212, 255, 0.5);
}

.doctor-badge-cert {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cyan);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-cyan);
}

.doctor-badge-cert svg {
    width: 16px;
    height: 16px;
}

.doctor-info h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.doctor-title {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.title-tag {
    background: var(--cyan-glow);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.doctor-bio {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.doctor-expertise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.expertise-item svg {
    width: 16px;
    height: 16px;
    color: var(--cyan-dark);
    flex-shrink: 0;
}

.developer-credit {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.developer-credit a:hover {
    color: var(--cyan);
}

@media (max-width: 1024px) {
    .doctor-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px;
    }

    .doctor-photo-wrap {
        flex-direction: row;
        justify-content: flex-start;
    }

    .doctor-photo-placeholder {
        width: 160px;
        height: 190px;
    }
}

@media (max-width: 600px) {
    .doctor-expertise {
        grid-template-columns: 1fr;
    }

    .doctor-photo-wrap {
        flex-direction: column;
        align-items: center;
    }

    .doctor-card {
        padding: 28px 20px;
    }
}

/* ====================================
    PROCESS TIMELINE CUSTOM CSS
   ==================================== */
.process-timeline {
    padding: 96px 0;
    background: white;
}

.tl-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-timeline {
    position: relative;
    margin-top: 40px;
}

.main-timeline::after {
    content: "";
    position: absolute;
    width: 0px;
    border: 1.5px dashed var(--cyan);
    top: 0;
    bottom: 0px;
    left: 50%;
    margin-left: -1px;
}

.timeline {
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 4px solid white;
    outline: 2px solid var(--cyan-dark);
    right: -11px;
    background-color: var(--cyan);
    top: 40px;
    border-radius: 50%;
    z-index: 1;
}

.timeline.left {
    padding: 0 40px 40px 0;
    left: 0;
}

.timeline.right {
    padding: 0 0 40px 40px;
    left: 50%;
}

.timeline.left::before {
    content: " ";
    position: absolute;
    top: 44px;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.timeline.right::before {
    content: "";
    position: absolute;
    top: 44px;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.timeline.right::after {
    left: -11px;
}

.tl-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-200);
}

@supports (animation-timeline: view()) {
    .tl-card {
        scale: 0.8;
        opacity: 0;
        animation: tl-fade-in linear forwards;
        animation-timeline: view();
        animation-range: entry 5% cover 30%;
    }
}

.origin-left { transform-origin: 0% 50%; }
.origin-right { transform-origin: 100% 50%; }

@keyframes tl-fade-in {
    to {
        scale: 1;
        opacity: 1;
    }
}

.tl-img-container {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--gradient-cyan);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(40%);
}

.tl-card:hover .tl-img-container {
    transform: scale(1.05);
    filter: saturate(100%);
}

.tl-img-wrapper {
    overflow: hidden;
}

.tl-card-body {
    padding: 30px;
    background: white;
    position: relative;
    z-index: 2;
}

.tl-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.tl-card-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .main-timeline::after {
        left: 20px;
    }
    .timeline {
        width: 100%;
        padding-left: 50px;
        padding-right: 0px;
    }
    .timeline::before {
        left: 40px;
        border-color: transparent white transparent transparent;
        border-width: 10px 10px 10px 0;
    }
    .timeline.left::after, .timeline.right::after {
        left: 9px;
    }
    .timeline.left::before {
        right: auto;
    }
    .timeline.right {
        left: 0%;
    }
    .tl-card {
        transform-origin: 0% 50%;
    }
    .timeline.left {
        padding: 0 0 40px 50px;
    }
}

.tl-img-1 { background-image: url('../assets/images/step1.webp'); }
.tl-img-2 { background-image: url('../assets/images/kis_ted.webp'); }
.tl-img-3 { background-image: url('../assets/images/step3.webp'); }
.tl-img-4 { background-image: url('../assets/images/step4.webp'); }

/* ====================================
   SERVICES SLIDER
   ==================================== */
.svc-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.svc-slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-xl);
}

.svc-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.svc-slide {
    flex: 0 0 100%;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.svc-slide:hover {
    transform: translateY(-4px);
}

.svc-slide-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Per-service background images (replaces inline styles) */
.svc-slide:nth-child(1)  .svc-slide-img { background-image: url('../assets/images/muy_tes.webp'); }
.svc-slide:nth-child(2)  .svc-slide-img { background-image: url('../assets/images/dis_tas_tem.webp'); }
.svc-slide:nth-child(3)  .svc-slide-img { background-image: url('../assets/images/svc_dolgu.webp'); }
.svc-slide:nth-child(4)  .svc-slide-img { background-image: url('../assets/images/Kan_ted.webp'); }
.svc-slide:nth-child(5)  .svc-slide-img { background-image: url('../assets/images/svc_cekim.webp'); }
.svc-slide:nth-child(6)  .svc-slide-img { background-image: url('../assets/images/imp_ted.webp'); }
.svc-slide:nth-child(7)  .svc-slide-img { background-image: url('../assets/images/svc_beyazlatma.webp'); }
.svc-slide:nth-child(8)  .svc-slide-img { background-image: url('../assets/images/zir_por_kap.webp'); }
.svc-slide:nth-child(9)  .svc-slide-img { background-image: url('../assets/images/svc_ortodonti.webp'); }
.svc-slide:nth-child(10) .svc-slide-img { background-image: url('../assets/images/svc_periodontoloji.webp'); }
.svc-slide:nth-child(11) .svc-slide-img { background-image: url('../assets/images/ped_co_hek.webp'); }

.svc-slide-body {
    padding: 24px 28px 28px;
}

.svc-slide-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.svc-slide-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Navigation Arrows */
.svc-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: var(--navy);
    z-index: 2;
}

.svc-arrow svg {
    width: 20px;
    height: 20px;
}

.svc-arrow:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.4);
}

.svc-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Dots */
.svc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.svc-dot.active {
    background: var(--cyan-dark);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (min-width: 641px) {
    .svc-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 993px) {
    .svc-slide {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 640px) {
    .svc-arrow {
        width: 38px;
        height: 38px;
    }
}

/* ====================================
   GALLERY SLIDER
   ==================================== */
.gal-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.gal-slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-xl);
}

.gal-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gal-slide {
    flex: 0 0 100%;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--navy);
}

.gal-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image slides via CSS (eliminates inline styles) */
.gal-slide:nth-child(3) .gal-slide-media { background: url('../assets/images/bek_sal.webp') center/cover no-repeat; }
.gal-slide:nth-child(4) .gal-slide-media { background: url('../assets/images/lobby2.webp') center/cover no-repeat; }
.gal-slide:nth-child(5) .gal-slide-media { background: url('../assets/images/koltuk2.webp') center/cover no-repeat; }
.gal-slide:nth-child(6) .gal-slide-media { background: url('../assets/images/tek_alet1.webp') center/cover no-repeat; }
.gal-slide:nth-child(7) .gal-slide-media { background: url('../assets/images/Teknolojik_aletler1.webp') center/cover no-repeat; }
.gal-slide:nth-child(8) .gal-slide-media { background: url('../assets/images/panoromik_film.webp') center/cover no-repeat; }

.gal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gal-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.82) 0%, transparent 100%);
    color: white;
}

.gal-slide-overlay span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Gallery Arrows (reuse same style as svc) */
.gal-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: var(--navy);
    z-index: 2;
}

.gal-arrow svg { width: 22px; height: 22px; }

.gal-arrow:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.4);
}

.gal-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Gallery Dots */
.gal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.gal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gal-dot.active {
    background: var(--cyan-dark);
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .gal-slide { aspect-ratio: 4 / 3; }
    .gal-arrow { width: 38px; height: 38px; }
    .gal-slide-overlay span { font-size: 15px; }
}

/* ====================================
   PARTNERS SECTION
   ==================================== */
.partners {
    padding: 100px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 60px;
}

.partner-card {
    background: white;
    padding: 10px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.partner-card img {
    max-width: 100%;
    max-height: 125px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--cyan-light);
}



@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 60px 0;
    }
    .partner-card {
        padding: 20px;
        height: 100px;
    }
}

/* Fix: Remove any unwanted blue bars/borders at the top of slider slides */
.gal-slide, 
.gal-slider-viewport, 
.svc-slide, 
.svc-slider-viewport {
    border-top: none !important;
}

.gal-slide::before, 
.gal-slide::after, 
.svc-slide::before, 
.svc-slide::after {
    content: none !important;
    display: none !important;
}

.gal-video, .gal-slide-media {
    border: none !important;
    outline: none !important;
}

/* ====================================
    NEW SECTIONS: TESTIMONIALS, FAQ, COOKIE BANNER
   ==================================== */
.testimonials { background: var(--gray-100); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: white; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); text-align: center; }
.testimonial-card .stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: var(--gray-600); margin-bottom: 20px; font-size: 15px; }
.testimonial-author { font-weight: 700; color: var(--navy); }
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.faq-section { background: white; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: white; padding: 20px 24px; font-weight: 600; font-size: 16px; color: var(--navy); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { background: var(--gray-100); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.faq-question.active svg { transform: rotate(180deg); color: var(--cyan-dark); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; background: white; }
.faq-answer p { color: var(--gray-600); font-size: 15px; }
.faq-item.active .faq-answer { padding: 0 24px 20px 24px; max-height: 500px; }
