/* =====================================================
   MODEL DİŞ - PREMIUM DESIGN ENHANCEMENTS
   =====================================================*/

/* === CSS Variables === */
:root {
    --gold: #af8a03;
    --gold-light: #d4a913;
    --gold-dark: #8a6e02;
    --dark: #1a1a2e;
    --dark-accent: #16213e;
    --light-bg: #fafafa;
    --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* === Scroll Reveal Animation === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Sayfanın altında scroll trigger çalışmazsa backup olarak her zaman göster */
.scroll-reveal-ready .reveal:not(.revealed) {
    /* 3 saniye sonra yine de göster */
    animation: revealFallback 0.7s ease 3s forwards;
}
@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

/* === 1. DOKTORLAR PAGE — Premium Doctor Cards === */
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.doctor-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.doctor-card .doctor-img {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.doctor-card .doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.08);
}

.doctor-card .doctor-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    pointer-events: none;
}

.doctor-card .doctor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

.doctor-card .doctor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.doctor-card .doctor-specialty {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doctor-card .doctor-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.doctor-card .doctor-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-smooth);
    z-index: 3;
}

.doctor-card:hover .doctor-social {
    opacity: 1;
    transform: translateX(0);
}

.doctor-card .doctor-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.doctor-card .doctor-social a:hover {
    background: var(--gold);
    color: #fff;
}

/* === 2. RANDEVU PAGE — Modern Step Form === */
.appointment-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-accent) 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.appointment-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.appointment-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

.appointment-form-wrapper {
    max-width: 700px;
    margin: -40px auto 60px;
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--card-shadow-hover);
    position: relative;
    z-index: 2;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: var(--transition-smooth);
}

.step-dot.active {
    background: var(--gold);
    width: 36px;
    border-radius: 6px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.form-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.doctor-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.doctor-select-item {
    padding: 20px 15px;
    border: 2px solid #eee;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.doctor-select-item:hover,
.doctor-select-item.selected {
    border-color: var(--gold);
    background: rgba(175, 138, 3, 0.05);
}

.doctor-select-item.selected {
    box-shadow: 0 0 0 2px var(--gold);
}

.doctor-select-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.doctor-select-item .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.premium-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    background: #fafafa;
    margin-bottom: 16px;
}

.premium-input:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(175, 138, 3, 0.1);
}

.premium-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    background: #fafafa;
    min-height: 120px;
    resize: vertical;
    margin-bottom: 16px;
}

.premium-textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(175, 138, 3, 0.1);
}

.premium-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    background: #fafafa;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    margin-bottom: 16px;
}

.premium-select:focus {
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(175, 138, 3, 0.1);
}

.btn-premium-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.btn-premium-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(175, 138, 3, 0.3);
    color: #fff;
}

.btn-step-back {
    display: inline-block;
    background: transparent;
    color: #999;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #eee;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-step-back:hover {
    border-color: #ccc;
    color: #333;
}

/* === 3. BLOG PAGE — Card Grid === */
.blog-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-accent) 100%);
    padding: 80px 0 100px;
    text-align: center;
    color: #fff;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-header p {
    opacity: 0.7;
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.blog-card .blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card .blog-card-img .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card .blog-card-body {
    padding: 25px;
}

.blog-card .blog-card-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .blog-card-body p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.blog-card .blog-card-footer {
    padding: 15px 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card .blog-card-footer .date {
    font-size: 0.8rem;
    color: #aaa;
}

.blog-card .blog-card-footer .read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-card .blog-card-footer .read-more:hover {
    color: var(--gold-dark);
}

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

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(175, 138, 3, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(175, 138, 3, 0); }
    100% { box-shadow: 0 0 0 0 rgba(175, 138, 3, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.6s ease forwards; }
.animate-scale { animation: scaleIn 0.5s ease forwards; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Hover effects */
.hover-lift { transition: var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-5px); }

.hover-glow:hover { box-shadow: 0 0 30px rgba(175, 138, 3, 0.2); }

.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: scale(1.05); }

/* === 5. PREMIUM CSS EFFECTS === */

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
}

/* Gradient Overlays */
.gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-accent) 100%);
}

/* Text gradient */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium divider */
.premium-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 15px auto 25px;
}

/* Section titles */
.section-title-premium {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-premium h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.section-title-premium p {
    color: #777;
    font-size: 1.05rem;
}

/* === 6. CTA SECTION === */
.cta-appointment {
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.cta-appointment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(175, 138, 3, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-appointment h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-appointment p {
    font-size: 1.15rem;
    opacity: 0.7;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-appointment .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.cta-appointment .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(175, 138, 3, 0.35);
    color: #fff;
}

.cta-appointment .cta-phone {
    display: block;
    margin-top: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-light);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.cta-appointment .cta-phone:hover {
    color: #fff;
}

.cta-appointment .cta-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* === 7. MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
    .doctor-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .doctor-card .doctor-img {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .appointment-form-wrapper {
        margin: -30px 15px 40px;
        padding: 30px 20px;
    }

    .appointment-hero h1 {
        font-size: 2rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .cta-appointment {
        padding: 60px 0;
    }

    .cta-appointment h2 {
        font-size: 2rem;
    }

    .section-title-premium h2 {
        font-size: 1.8rem;
    }

    .doctor-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* === 8. TEDAVI DETAY === */
.treatment-detail-hero {
    background: linear-gradient(135deg, var(--dark), var(--dark-accent));
    padding: 80px 0 60px;
    color: #fff;
}

.treatment-detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.treatment-detail-hero .breadcrumb-custom {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.treatment-detail-hero .breadcrumb-custom li a {
    color: var(--gold-light);
    text-decoration: none;
}

.treatment-detail-hero .breadcrumb-custom li {
    color: rgba(255,255,255,0.5);
}

.treatment-content {
    padding: 60px 0;
}

.treatment-content .content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.treatment-content .content-body img {
    border-radius: 16px;
    margin: 20px 0;
    max-width: 100%;
}

.treatment-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
}

.sidebar-widget h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-widget .treatment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget .treatment-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-widget .treatment-list li:last-child {
    border-bottom: none;
}

.sidebar-widget .treatment-list li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget .treatment-list li a:hover,
.sidebar-widget .treatment-list li a.active {
    color: var(--gold);
    padding-left: 5px;
}

.sidebar-widget .treatment-list li a i {
    font-size: 0.7rem;
    color: var(--gold);
}

/* FAQ Accordion */
.faq-section { margin-top: 50px; }

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition-smooth);
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Sidebar Widget */
.sidebar-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.sidebar-cta h4 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
}

.sidebar-cta p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sidebar-cta a {
    display: inline-block;
    background: #fff;
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.sidebar-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Scroll Reveal Script Injection Target */
.scroll-reveal-ready .reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* =====================================================
   RANDEVU PAGE — SPLIT SCREEN PREMIUM
   =====================================================*/
.rd-page {
    display: flex;
    min-height: 100vh;
}

/* ── Sol panel ── */
.rd-panel {
    width: 320px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #1a2332 0%, #0d1b2e 100%);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
}
.rd-panel-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.rd-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.rd-brand-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: rgba(184,150,12,0.15);
    border: 1px solid rgba(184,150,12,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #d4af37;
    flex-shrink: 0;
}
.rd-brand-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 3px;
}
.rd-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.rd-panel-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 20px;
}

.rd-features {
    list-style: none;
    padding: 0; margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rd-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.rd-features li i {
    color: #d4af37;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.rd-hours {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.rd-hours h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rd-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rd-hours-row:last-child { border:0; }
.rd-hours-row strong { color: rgba(255,255,255,0.85); }

.rd-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 12px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.25);
    color: #4cda72;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}
.rd-wa-btn:hover {
    background: rgba(37,211,102,0.18);
    color: #4cda72;
    transform: translateY(-2px);
}
.rd-wa-btn i { font-size: 1.2rem; }

/* ── Sağ form tarafı ── */
.rd-form-side {
    flex: 1;
    background: #f5f4f0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 28px;
    min-height: 100vh;
}
.rd-form-box {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 20px;
    padding: 36px 36px;
    box-shadow: 0 12px 48px rgba(26,35,50,0.08);
}

/* Progress */
.rd-progress {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.rd-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.rd-progress-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f0efec;
    border: 2px solid #e0ddd6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #aaa;
    transition: all 0.4s ease;
}
.rd-progress-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.rd-progress-item.active .rd-progress-circle {
    background: #1a2332;
    border-color: #1a2332;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26,35,50,0.25);
}
.rd-progress-item.active span { color: #1a2332; }
.rd-progress-item.done .rd-progress-circle {
    background: #d4af37;
    border-color: #d4af37;
    color: #fff;
}
.rd-progress-item.done span { color: #d4af37; }

.rd-progress-line {
    flex: 1;
    height: 2px;
    background: #e8e6e0;
    margin: 0 6px;
    margin-bottom: 16px;
    transition: background 0.4s ease;
}
.rd-progress-line.active { background: #d4af37; }

/* Step */
.rd-step { display: none; animation: rdFadeUp 0.4s ease; }
.rd-step.active { display: block; }
@keyframes rdFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rd-step-header { margin-bottom: 20px; }
.rd-step-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 4px;
}
.rd-step-header p {
    font-size: 0.82rem;
    color: #999;
    margin: 0;
}

/* Doctor grid */
.rd-doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}
.rd-doctor-card {
    position: relative;
    padding: 14px 10px 12px;
    border: 2px solid #f0ede8;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}
.rd-doctor-card input[type=radio] { display: none; }
.rd-doctor-card img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 7px;
    border: 2px solid #f0ede8;
    transition: border-color 0.3s ease;
}
.rd-doctor-name {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.3;
}
.rd-doctor-check {
    position: absolute;
    top: 10px; right: 10px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.rd-doctor-card:hover { border-color: #d4af37; background: rgba(212,175,55,0.03); }
.rd-doctor-card.selected {
    border-color: #d4af37;
    background: rgba(212,175,55,0.06);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.rd-doctor-card.selected .rd-doctor-check { opacity: 1; transform: scale(1); }
.rd-doctor-card.selected img { border-color: #d4af37; }

.rd-doctor-any-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #f5f3ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.4rem;
    color: #d4af37;
}

/* Field groups */
.rd-field-group { margin-bottom: 18px; }
.rd-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.rd-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.3px;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.rd-label i { color: #d4af37; font-size: 0.85rem; }

.rd-input, .rd-select, .rd-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8e5e0;
    border-radius: 12px;
    font-size: 0.92rem;
    background: #faf9f7;
    outline: none;
    transition: all 0.25s ease;
    color: #1a2332;
    font-family: inherit;
}
.rd-input:focus, .rd-select:focus, .rd-textarea:focus {
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.rd-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.rd-textarea { min-height: 110px; resize: vertical; }

/* ── Saat Slot Grid ── */
.rd-slot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 4px;
}
.rd-slot-btn {
    padding: 10px 6px;
    border-radius: 10px;
    border: 1.5px solid;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
}
.rd-slot-musait {
    background: #f0fdf4;
    border-color: #86efac;
    color: #16a34a;
}
.rd-slot-musait:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22,163,74,0.2);
}
.rd-slot-dolu {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
    cursor: not-allowed;
    position: relative;
    opacity: 0.7;
    text-decoration: line-through;
}
.rd-slot-secili {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(212,175,55,0.35);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .rd-slot-grid { grid-template-columns: repeat(4, 1fr); }
}


/* Özet kutusu */
.rd-summary {
    background: #f5f3ef;
    border: 1px solid #e8e3d8;
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 24px;
}
.rd-summary h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4af37;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rd-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #666;
}
.rd-summary-row:last-child { border: 0; padding-bottom: 0; }
.rd-summary-row strong { color: #1a2332; font-weight: 700; }

/* Buttons */
.rd-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.rd-btn-gold {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #c9a227 0%, #e8c94a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.rd-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212,175,55,0.3);
    color: #fff;
}
.rd-btn-back {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 22px;
    background: transparent;
    color: #aaa;
    border: 1.5px solid #e8e5e0;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.rd-btn-back:hover { border-color: #ccc; color: #555; }

/* Başarı ekranı */
.rd-success {
    text-align: center;
    padding: 40px 0;
}
.rd-success-icon {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 18px;
}
.rd-success h3 { font-size: 1.6rem; font-weight: 800; color: #1a2332; margin-bottom: 10px; }
.rd-success p { color: #777; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 991px) {
    .rd-page { flex-direction: column; }
    .rd-panel { width: 100%; height: auto; position: relative; }
    .rd-panel-inner { padding: 36px 24px; }
    .rd-wa-btn { margin-top: 24px; }
    .rd-form-side { padding: 30px 16px; }
    .rd-form-box { padding: 32px 24px; }
    .rd-field-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .rd-doctor-grid { grid-template-columns: repeat(2, 1fr); }
    .rd-progress-item span { display: none; }
}

/* === 9. PREMIUM FOOTER with SPOTLIGHT EFFECT === */
.premium-footer {
    background: #050505;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* The Spotlight Overlay */
.footer-spotlight {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(175, 138, 3, 0.12),
        transparent 40%
    );
    transition: background 0.15s ease-out;
}

.premium-footer .footer-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Newsletter Section */
.footer-newsletter-wrap {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
@media(max-width:992px){ .footer-newsletter-wrap { flex-direction: column; text-align: center; } }

.fn-left h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.fn-left p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; }

.fn-form { display: flex; align-items: center; gap: 12px; max-width: 500px; width: 100%; }
.fn-input-wrap {
    flex: 1; position: relative;
}
.fn-input-wrap i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.3); }
.fn-input {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 14px 20px 14px 48px; border-radius: 50px; outline: none; transition: border 0.3s;
}
.fn-input:focus { border-color: var(--gold); }

.fn-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #e8c94a 100%);
    color: #050505; border: none; padding: 14px 30px; border-radius: 50px;
    font-weight: 800; font-size: 0.85rem; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
}
.fn-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(175, 138, 3, 0.4); }

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media(max-width:992px){ .footer-main { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-main { grid-template-columns: 1fr; text-align: center; } }

.fm-col h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 25px; }

.footer-logo { margin-bottom: 25px; display: block; }
.footer-logo img { max-width: 180px; filter: brightness(0) invert(1); }

.footer-contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; text-decoration: none; color: inherit; }
.footer-contact-icon {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem;
}
.footer-contact-body .label { font-size: 0.72rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 2px; }
.footer-contact-body .val { font-size: 1.1rem; font-weight: 700; color: #fff; }

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 12px; }
.footer-menu li a {
    text-decoration: none; color: rgba(255,255,255,0.7); font-weight: 500; font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-menu li a:hover { color: var(--gold); }

/* Bottom Bar */
.footer-bottom {
    padding: 30px 40px;
    background: #000;
    display: flex; align-items: center; justify-content: space-between;
}
@media(max-width:768px){ .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }

.fb-left { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.fb-links { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.fb-links li a { text-decoration: none; color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 500; transition: color 0.3s; }
.fb-links li a:hover { color: #fff; }
.fb-right .wfr-logo { filter: grayscale(1) invert(1) opacity(0.5); width: 80px; }


/* ══════════════════════════════════════════════
   NEW PREMIUM FOOTER — Mode Implant Style
══════════════════════════════════════════════ */
.pf {
    background: #080808;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Spotlight */
.pf-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        800px circle at var(--pfx, 80%) var(--pfy, -20%),
        rgba(184, 150, 12, 0.18) 0%,
        rgba(184, 150, 12, 0.07) 35%,
        transparent 60%
    );
    transition: background 0.08s linear;
}

.pf-wrap {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Newsletter ── */
.pf-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin: 0 -40px;
}
.pf-nl-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pf-nl-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.pf-nl-left strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.pf-nl-left span {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}
.pf-nl-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.pf-nl-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 13px 22px;
    border-radius: 50px;
    outline: none;
    width: 260px;
    font-size: 0.9rem;
    transition: border 0.3s;
}
.pf-nl-input:focus { border-color: var(--gold); }
.pf-nl-input::placeholder { color: rgba(255,255,255,0.3); }
.pf-nl-btn {
    background: var(--gold);
    color: #080808;
    border: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
}
.pf-nl-btn i {
    width: 26px; height: 26px;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.pf-nl-btn:hover { background: #e8c94a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,12,0.4); }

/* ── Main Content ── */
.pf-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand column */
.pf-logo { display: block; margin-bottom: 32px; }
.pf-logo img { max-width: 180px; filter: brightness(0) invert(1); opacity: 0.9; }

.pf-contact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
}
.pf-contact-val {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.pf-contact-val:hover { color: var(--gold); }

.pf-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.pf-soc-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}
.pf-soc-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #080808;
    transform: translateY(-3px);
}

/* Menu column */
.pf-col-menu { padding-top: 8px; }
.pf-menu-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 28px;
}
.pf-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.pf-menu-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}
.pf-menu-link::before {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width 0.4s ease;
}
.pf-menu-link:hover {
    color: #fff;
    padding-left: 8px;
}
.pf-menu-link:hover::before { width: 100%; }
.pf-menu-link-gold {
    color: var(--gold) !important;
    font-weight: 800;
}
.pf-menu-link-gold:hover { color: #e8c94a !important; }

/* ── Bottom Bar ── */
.pf-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.pf-bottom-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pf-btm-link {
    padding: 7px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.pf-btm-link:hover {
    background: rgba(184,150,12,0.15);
    border-color: var(--gold);
    color: var(--gold);
}
.pf-copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
}
.pf-copyright span { color: rgba(255,255,255,0.2); }
.pf-copyright-logo {
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}
.pf-copyright-logo:hover { color: var(--gold); }
.pf-copyright-link {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.78rem;
}
.pf-copyright-link:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 992px) {
    .pf-main { grid-template-columns: 1fr; gap: 40px; }
    .pf-newsletter { flex-direction: column; align-items: flex-start; margin: 0 -20px; padding: 30px 20px; }
    .pf-nl-form { width: 100%; }
    .pf-nl-input { flex: 1; }
    .pf-wrap { padding: 0 20px; }
}
@media (max-width: 600px) {
    .pf-menu-grid { grid-template-columns: 1fr; }
    .pf-bottom { flex-direction: column; align-items: flex-start; }
    .pf-copyright { font-size: 0.72rem; gap: 8px; }
}

