@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

/* PREMIUM DENTAL THEME - Poppins & Inter */
:root {
    /* Primary Colors */
    --primary: #002B45;
    /* Deeper Navy */
    --primary-light: #004D73;
    --primary-dark: #001A2B;

    /* Secondary Colors */
    --secondary: #00E0FF;
    /* Vibrant Cyan */
    --secondary-hover: #00B8D4;

    /* Accent Colors */
    --accent: #FFB300;
    /* Golden/Amber */

    /* Neutral Colors */
    --light: #F8FAFC;
    --white: #FFFFFF;
    --dark: #0F172A;
    --gray: #64748B;
    --gray-light: #E2E8F0;

    /* Status Colors */
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    /* Spacing & Layout */
    --radius: 16px;
    /* More rounded */
    --radius-sm: 8px;
    --radius-full: 9999px;

    /* Shadows - Premium Elevation */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 43, 69, 0.1), 0 10px 10px -5px rgba(0, 43, 69, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 43, 69, 0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.btn-primary,
.nav-btn {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    outline: none;
}

/* UTILS */
.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TOP BAR */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info,
.social-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-info i,
.social-links i {
    color: var(--secondary);
    margin-right: 6px;
}

/* HEADER */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e4eaf2;
    box-shadow: 0 1px 12px rgba(0, 43, 69, 0.07), 0 4px 24px rgba(0, 43, 69, 0.04);
    transition: var(--transition);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 80px;
    gap: 0;
}

.header-content .nav {
    justify-self: center;
    margin: 0 auto;
}

.header-content .header-right {
    justify-self: end;
    margin-left: 0;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.9);
}

.logo {
    font-size: 15.5px;
    white-space: nowrap;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.logo span {
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 2px;
    background: #eef2f7;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.nav-btn {
    background: transparent;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #64748b;
    border-radius: 7px;
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 0.1px;
    transition: var(--transition);
}

.nav-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.nav-btn.active {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(0, 43, 69, 0.1);
}

/* Yönetim Paneli özel vurgu */
.nav-btn.admin-link {
    color: #7c3aed;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.07);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.nav-btn.admin-link:hover {
    background: rgba(124, 58, 237, 0.12);
    color: #6d28d9;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--info) 100%);
    color: var(--white);
    padding: 12px 24px;
    font-size: 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 224, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.4);
    filter: brightness(1.05);
}

/* Header Right Group (Phone + CTA Button) */
.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: var(--transition);
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid #dde5ef;
    background: #f8fafc;
}

.header-phone i {
    color: var(--secondary);
    font-size: 13px;
}

.header-phone:hover {
    background: #fff;
    border-color: var(--secondary);
    color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 224, 255, 0.12);
}



/* HERO SECTION */
.hero {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at top right, #f0f9ff 0%, #ffffff 60%);
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(0, 224, 255, 0.1);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 224, 255, 0.2);
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary-lg {
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(0, 43, 69, 0.4);
    background: var(--primary-light);
}

.btn-outline-lg {
    padding: 18px 40px;
    border: 2px solid var(--gray-light);
    color: var(--primary);
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-outline-lg:hover {
    border-color: var(--primary);
    background: rgba(0, 43, 69, 0.03);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 60px;
    border-top: 1px solid var(--gray-light);
    padding-top: 30px;
}

.trust-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-video-container {
    height: 500px;
    border-radius: 30px;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.hero-video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 43, 69, 0.5);
    border-color: rgba(0, 224, 255, 0.25);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Mobilde çıkan play butonuna tıklanmasını ve videonun durdurulmasını engeller */
}

/* Hide iOS Safari/Chrome native play button overlay and controls */
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

/* SERVICES SECTION */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--info));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    font-size: 40px;
    margin-bottom: 24px;
    background: rgba(0, 224, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: none;
    padding: 0;
    border-bottom: 2px solid rgba(0, 43, 69, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

/* GENERAL PAGE ANIMATION */
.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

/* APPOINTMENT PAGE - Minimalist Centered Layout */
.appointment-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at top, #f0f9ff 0%, #f8fafc 100%);
}

.split-layout {
    display: block;
    /* Remove grid */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 43, 69, 0.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.split-info {
    display: none;
    /* Hide the side info panel for minimalism */
}

.split-form {
    padding: 50px 40px;
}

.form-wrapper h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-wrapper p.form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    width: 100%;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: white;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.1);
    outline: none;
}

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

.btn-primary {
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 10px 20px -5px rgba(0, 43, 69, 0.3);
    color: white !important;
    /* Force white text */
}

/* TOAST NOTIFICATIONS */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 12px;
    background: white;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 0.3s forwards;
    border-left: 5px solid var(--primary);
}

.toast.success {
    border-left-color: var(--success);
}

.toast.error {
    border-left-color: var(--danger);
}

.toast.info {
    border-left-color: var(--info);
}

.toast i {
    font-size: 18px;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--danger);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 43, 69, 0.4);
}





/* =====================================================
   ADMIN PANEL — PREMIUM REDESIGN
   Renk Paleti: Navy (#002B45) + Cyan (#00E0FF) + Amber (#FFB300)
   ===================================================== */

/* --- Topbar --- */
.panel-topbar {
    background: linear-gradient(135deg, #001A2B 0%, #002B45 60%, #00375c 100%);
    border-bottom: 1px solid rgba(0, 224, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 27, 43, 0.4);
}

.panel-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.panel-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.panel-topbar .logo {
    font-size: 17px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.panel-topbar .logo span {
    color: #00E0FF;
}

.panel-brand-sub {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 224, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.panel-topbar .logo-circle {
    width: 38px;
    height: 38px;
    font-size: 13px;
    flex-shrink: 0;
}

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

.panel-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.panel-nav-link:hover {
    background: rgba(0, 224, 255, 0.12);
    color: #00E0FF;
    border-color: rgba(0, 224, 255, 0.3);
}

.panel-nav-logout {
    color: rgba(255, 100, 100, 0.8);
    border-color: rgba(255, 100, 100, 0.15);
}

.panel-nav-logout:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

/* --- Main layout --- */
.panel-main {
    background: #f0f4f8;
    min-height: calc(100vh - 64px);
}

.panel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 28px 60px;
}

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    background: white;
    padding: 20px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 43, 69, 0.07);
    border: 1px solid #e8eef4;
    transition: all 0.25s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 43, 69, 0.12);
}

.stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon-total {
    background: rgba(0, 43, 69, 0.08);
    color: #002B45;
}

.stat-icon-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.stat-icon-approved {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-val {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #002B45;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-key {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-box.pending .stat-val {
    color: #D97706;
}

.stat-box.approved .stat-val {
    color: #059669;
}

/* --- Toolbar --- */
.panel-toolbar {
    background: white;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 43, 69, 0.07);
    border: 1px solid #e8eef4;
}

.kontrol-arama {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 14px;
    transition: border-color 0.2s;
}

.kontrol-arama:focus-within {
    border-color: #002B45;
    background: white;
}

.kontrol-arama i {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.kontrol-arama input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #0f172a;
    width: 100%;
}

.kontrol-arama input::placeholder {
    color: #94a3b8;
}

.panel-filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filtre-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    transition: border-color 0.2s;
}

.filtre-group:focus-within {
    border-color: #002B45;
    background: white;
}

.filtre-icon {
    color: #94a3b8;
    font-size: 13px;
}

.filtre-group select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

/* --- Table --- */
.randevu-listesi {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 43, 69, 0.07);
    border: 1px solid #e8eef4;
    overflow: hidden;
}

.randevu-table-header {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.8fr 1.1fr 1.2fr;
    gap: 0;
    padding: 10px 20px;
    background: linear-gradient(to right, #002B45, #004D73);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.65);
}

.randevu-satir {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.8fr 1.1fr 1.2fr;
    gap: 0;
    padding: 13px 20px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.randevu-satir:last-child {
    border-bottom: none;
}

.randevu-satir:hover {
    background: #f8fafc;
}

.rt-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-right: 12px;
}

.rt-col-hasta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.rt-col-islem {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

/* Hasta bilgi — avatar kaldırıldı */
.hasta-bilgi {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hasta-ad {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
}

/* Not butonu (tıklanabilir) */
.hasta-not-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #D97706;
    background: #FFF7ED;
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 6px;
    padding: 2px 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    width: fit-content;
}

.hasta-not-btn:hover {
    background: #D97706;
    color: white;
    border-color: #D97706;
}

/* Not Modal Overlay */
.not-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 27, 43, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.not-modal-box {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 27, 43, 0.3);
    overflow: hidden;
}

.not-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(to right, #002B45, #004D73);
    color: white;
}

.not-modal-header i:first-child {
    color: #FFB300;
    font-size: 16px;
}

.not-modal-header span {
    font-weight: 600;
    font-size: 14px;
    flex: 1;
}

.not-modal-kapat {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 14px;
}

.not-modal-kapat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.not-modal-icerik {
    padding: 24px 20px;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.7;
    white-space: pre-wrap;
    margin: 0;
}


/* Tarih */
.tarih-gun {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.tarih-saat {
    font-size: 12px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tarih-saat i {
    font-size: 11px;
    color: #00E0FF;
}

/* İletişim */
.iletisim-link {
    font-size: 13px;
    font-weight: 500;
    color: #002B45;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.15s;
}

.iletisim-link:hover {
    color: #00B8D4;
}

.iletisim-link i {
    font-size: 11px;
    color: #00E0FF;
}

.iletisim-email {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.iletisim-email i {
    font-size: 11px;
}

/* Badge */
.durum-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    width: fit-content;
}

.durum-badge i {
    font-size: 10px;
}

.durum-beklemede {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid rgba(194, 65, 12, 0.15);
}

.durum-onaylandi {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid rgba(4, 120, 87, 0.15);
}

.durum-iptal {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid rgba(185, 28, 28, 0.15);
}

/* Icon Buttons */
.islem-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    position: relative;
}

.btn-icon:hover {
    transform: translateY(-1px);
}

.btn-icon-onayla {
    background: #ECFDF5;
    color: #047857;
    border-color: rgba(4, 120, 87, 0.2);
}

.btn-icon-onayla:hover {
    background: #059669;
    color: white;
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.btn-icon-iptal {
    background: #FFF5F5;
    color: #B91C1C;
    border-color: rgba(185, 28, 28, 0.2);
}

.btn-icon-iptal:hover {
    background: #DC2626;
    color: white;
    border-color: #DC2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.btn-icon-sil {
    background: #F8FAFC;
    color: #64748B;
    border-color: rgba(100, 116, 139, 0.2);
}

.btn-icon-sil:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 15px;
}

/* --- Keep old btn-action for backwards compat --- */
.btn-action {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-onayla {
    background: var(--success);
}

.btn-onayla:hover {
    background: #059669;
}

.btn-iptal {
    background: var(--danger);
}

.btn-iptal:hover {
    background: #dc2626;
}

.btn-sil {
    background: var(--gray);
}

.btn-sil:hover {
    background: var(--dark);
}


/* LOGIN PAGE */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px;
    background: radial-gradient(circle, #f0f9ff 0%, #e2e8f0 100%);
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 650px;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

/* FOOTER */
.footer {
    background: white;
    padding: 80px 0 30px;
    border-top: 1px solid var(--gray-light);
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-col h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: var(--gray);
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--gray-light);
}

.social-icon:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 224, 255, 0.3);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: var(--transition);
    animation: whatsapp-glow 2s infinite alternate;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9), 0 0 60px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.5), 0 0 30px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.9), 0 0 45px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.3);
    }
}

/* KONTROL BARI (Arama + Filtreler) */
.kontrol-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.kontrol-arama {
    flex: 1 1 260px;
    position: relative;
    display: flex;
    align-items: center;
}

.kontrol-arama i {
    position: absolute;
    left: 14px;
    color: var(--gray);
    font-size: 14px;
    pointer-events: none;
}

.kontrol-arama input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    transition: var(--transition);
}

.kontrol-arama input:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.12);
}

.kontrol-arama input::placeholder {
    color: #94a3b8;
}

.kontrol-filtreler {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filtre-group {
    position: relative;
    display: flex;
    align-items: center;
}

.filtre-icon {
    position: absolute;
    left: 12px;
    color: var(--gray);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.filtre-group select {
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 32px 10px 34px;
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: var(--light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748B'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    min-width: 160px;
}

.filtre-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.12);
}

/* SAYFALAMA (Pagination) */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination-info {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.footer-bottom p {

    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-top: 16px;

}





.pagination-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    background: white;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(.active):not(.disabled) {
    border-color: var(--secondary);
    color: var(--primary);
    background: rgba(0, 224, 255, 0.06);
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 43, 69, 0.3);
}

.page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.page-ellipsis {
    font-size: 14px;
    color: var(--gray);
    padding: 0 4px;
    line-height: 38px;
}

/* HOME ABOUT SECTION */
.home-about {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

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

.home-about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 3px solid var(--white);
    min-width: 140px;
    animation: float 4s ease-in-out infinite;
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    line-height: 1.2;
}

.home-about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-about-text h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.home-about-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.home-about-text p:last-of-type {
    margin-bottom: 30px;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-readmore:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-readmore i {
    transition: var(--transition);
}

.btn-readmore:hover i {
    transform: translateX(4px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* THEME TOGGLE, LANG SELECTOR & FLOATING PHONE BTN */
.theme-toggle-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--gray-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    margin-right: 12px;
}

.theme-toggle-btn:hover {
    background: var(--gray-light);
    color: var(--secondary-hover);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #dde5ef;
    background: #f8fafc;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: #fff;
    border-color: var(--secondary);
    color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 224, 255, 0.12);
}

body.dark-mode .mobile-menu-btn {
    color: var(--white);
    border-color: var(--gray-light);
    background: var(--gray-light);
}

body.dark-mode .mobile-menu-btn:hover {
    background: #111827;
}

.lang-selector {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.lang-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--gray-light);
    padding: 0 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    height: 40px;
    font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
    background: var(--gray-light);
}

.lang-dropdown {
    position: absolute;
    top: 48px;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    min-width: 130px;
    z-index: 1100;
    overflow: hidden;
    transition: var(--transition);
}

.lang-dropdown.show {
    display: flex;
    animation: fadeInDropdown 0.2s ease-out forwards;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown a {
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    text-align: left;
    display: block;
}

.lang-dropdown a:hover {
    background: rgba(0, 224, 255, 0.08);
    color: var(--secondary-hover);
}

.phone-float-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.6), 0 0 40px rgba(0, 180, 216, 0.3);
    z-index: 1001;
    transition: var(--transition);
    animation: phone-glow 2s infinite alternate;
}

.phone-float-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.9), 0 0 60px rgba(0, 180, 216, 0.5);
    color: white;
}

@keyframes phone-glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 180, 216, 0.5), 0 0 30px rgba(0, 180, 216, 0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 180, 216, 0.9), 0 0 45px rgba(0, 180, 216, 0.5), 0 0 60px rgba(0, 180, 216, 0.3);
    }
}

/* DARK MODE OVERRIDES */
body.dark-mode {
    --light: #0B0F19;
    --white: #111827;
    --dark: #F8FAFC;
    --gray: #94A3B8;
    --gray-light: #1F2937;
    --primary: #38BDF8;
    --primary-light: #7DD3FC;
}

body.dark-mode .header {
    background: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
    border-bottom-color: #1f2937;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo {
    color: var(--white);
}

body.dark-mode .nav-btn {
    color: var(--gray);
}

body.dark-mode .nav-btn:hover,
body.dark-mode .nav-btn.active {
    color: var(--secondary);
}

body.dark-mode .theme-toggle-btn,
body.dark-mode .lang-btn {
    color: var(--white);
    border-color: var(--gray-light);
}

body.dark-mode .theme-toggle-btn:hover,
body.dark-mode .lang-btn:hover {
    background: var(--gray-light);
}

body.dark-mode .lang-dropdown {
    background: #111827;
    border-color: #1f2937;
}

body.dark-mode .lang-dropdown a {
    color: #f8fafc;
}

body.dark-mode .lang-dropdown a:hover {
    background: rgba(56, 189, 248, 0.1);
    color: var(--secondary);
}

body.dark-mode .service-card,
body.dark-mode .mv-card,
body.dark-mode .address-box {
    background: #1F2937;
    border-color: #374151;
}

body.dark-mode .service-card h3,
body.dark-mode .mv-card h3,
body.dark-mode .location-title,
body.dark-mode .home-about-text h2 {
    color: var(--white);
}

body.dark-mode .btn-outline-lg {
    border-color: var(--gray-light);
    color: var(--white);
}

body.dark-mode .btn-outline-lg:hover {
    border-color: var(--primary);
    background: rgba(56, 189, 248, 0.05);
}

body.dark-mode .modal-content {
    background: #111827;
    color: #f8fafc;
    border: 1px solid #1f2937;
}

body.dark-mode .modal-title {
    color: var(--white);
    border-bottom-color: #1f2937;
}

body.dark-mode .modal-close {
    color: var(--gray);
}

/* Appointment Form Dark Mode */
body.dark-mode .appointment-card {
    background: #1F2937;
    border-color: #374151;
}

body.dark-mode .form-group label {
    color: var(--white);
}

body.dark-mode .form-control {
    background: #111827;
    border-color: #374151;
    color: var(--white);
}

body.dark-mode .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

body.dark-mode .saat-btn {
    background: #111827;
    border-color: #374151;
    color: var(--gray);
}

body.dark-mode .saat-btn:hover:not(.disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

body.dark-mode .saat-btn.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #0b0f19 !important;
}

body.dark-mode .saat-btn.disabled {
    background: #1f2937;
    color: #4b5563;
}

/* MOBILE MENU DRAWER DEFAULT HIDDEN */
.mobile-overlay,
.mobile-drawer {
    display: none;
}

/* MOBILE RESPONSIVE */
@media(max-width: 900px) {
    .top-bar-content {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .contact-info,
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        height: auto;
        min-height: 60px;
        padding: 10px 15px 2px 15px;
        position: relative;
    }

    .logo-container {
        justify-content: flex-start;
        text-align: left;
    }

    .header-content .nav {
        display: none;
    }

    .header-content .header-right {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 3;
        margin-top: 6px;
        margin-bottom: 4px;
        flex-wrap: wrap;
        
        /* Drawer Transition Properties */
        max-height: 150px;
        opacity: 1;
        overflow: visible;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.4s ease;
    }

    .header.scrolled .header-content .header-right {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        margin-bottom: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .nav.mobile-menu-open {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        margin: 10px 0 0 0;
        padding: 15px;
        border: 1px solid var(--gray-light);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
        gap: 8px;
        order: 4;
    }

    .nav-btn {
        padding: 12px 16px;
        font-size: 14px;
        text-align: left;
        width: 100%;
        border-radius: 8px;
    }

    .btn-cta {
        padding: 10px 18px;
        font-size: 13px;
    }

    .header-phone {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero {
        position: relative;
        background: none;
        padding: 40px 0;
    }

    .hero-bg {
        display: none;
    }

    .hero-container {
        position: static;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .hero-video-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        opacity: 1.0;
        transition: none;
    }

    .hero-video-container:hover {
        transform: none;
        box-shadow: none;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        background: transparent;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        margin: 0;
    }

    body.dark-mode .hero-text {
        background: transparent;
        border: none;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-info {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        border-top: 1px solid var(--gray-light);
        margin-top: 35px;
        padding-top: 20px;
        text-align: center;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Removed old .nav styles */

    /* RESPONSIVE FOR HOME ABOUT */
    .home-about {
        padding: 60px 0;
    }

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

    .experience-badge {
        bottom: -20px;
        right: -10px;
        padding: 16px;
        min-width: 120px;
    }

    .experience-badge h3 {
        font-size: 24px;
    }

    .home-about-text h2 {
        font-size: 28px;
    }

    /* MOBILE ADJUSTMENTS FOR TOGGLE & LANG Selector */
    .theme-toggle-btn {
        margin-right: 0;
    }

    /* Mobile Drawer and Overlay Styling */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        z-index: 1999;
        pointer-events: none;
        transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    }

    .mobile-overlay.open {
        background: rgba(15, 23, 42, 0.55);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        pointer-events: auto;
    }

    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        border-radius: 20px 0 0 20px;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-drawer.open {
        transform: translateX(0);
    }

    /* Drawer Header */
    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid var(--gray-light);
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    body.dark-mode .drawer-header {
        background: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
    }

    .drawer-header .logo-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex: 1;
        min-width: 0;
    }

    .drawer-header .logo {
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--primary);
        white-space: normal;
        max-width: 170px;
    }

    .drawer-close-btn {
        background: var(--light);
        color: var(--gray);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
        border: 1px solid var(--gray-light);
        flex-shrink: 0;
    }

    .drawer-close-btn:hover {
        background: var(--danger);
        color: white;
        transform: rotate(90deg);
    }

    /* Drawer Body */
    .drawer-body {
        flex-grow: 1;
        overflow-y: auto;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
    }

    .drawer-nav {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
    }

    .drawer-nav-btn {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 18px;
        font-size: 14.5px;
        font-weight: 500;
        color: var(--gray);
        border-radius: 12px;
        transition: var(--transition);
        border-bottom: 1px solid rgba(226, 232, 240, 0.3);
        margin-bottom: 4px;
    }

    .drawer-nav-btn:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    /* Premium Icon Badge */
    .drawer-nav-btn i {
        font-size: 14px;
        color: var(--primary);
        background: var(--light);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .drawer-nav-btn:hover {
        background: var(--light);
        color: var(--primary);
    }

    .drawer-nav-btn:hover i {
        background: rgba(0, 224, 255, 0.15);
        color: var(--secondary);
    }

    /* Active nav button highlight */
    .drawer-nav-btn.active {
        background: rgba(0, 224, 255, 0.08);
        color: var(--primary-light);
        font-weight: 600;
        border-left: 4px solid var(--secondary);
        border-radius: 0 12px 12px 0;
    }

    .drawer-nav-btn.active i {
        background: var(--secondary);
        color: var(--white);
        box-shadow: 0 4px 10px rgba(0, 224, 255, 0.25);
    }

    /* Language Section inside Drawer */
    .drawer-lang-section {
        margin-top: 20px;
        padding: 20px 25px 0 25px;
        border-top: 1.5px solid var(--gray-light);
    }

    .lang-title {
        font-size: 12px;
        font-weight: 700;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .drawer-lang-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .drawer-lang-links a {
        padding: 10px;
        border: 1px solid var(--gray-light);
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        color: var(--primary);
        text-align: center;
        background: var(--light);
        transition: var(--transition);
    }

    .drawer-lang-links a:hover {
        background: var(--white);
        border-color: var(--secondary);
        color: var(--secondary-hover);
    }

    .drawer-lang-links a.active {
        background: var(--secondary);
        color: var(--white) !important;
        border-color: var(--secondary);
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 224, 255, 0.25);
    }

    /* Drawer Footer (Sticky Bottom CTA Area) */
    .drawer-footer {
        padding: 20px;
        border-top: 1px solid var(--gray-light);
        background: var(--white);
        display: flex;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.04);
    }

    body.dark-mode .drawer-footer {
        background: #111827;
    }

    .drawer-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px;
        border-radius: 12px;
        border: 1px solid #dde5ef;
        background: var(--light);
        color: var(--primary);
        font-size: 14.5px;
        font-weight: 600;
        transition: var(--transition);
    }

    .drawer-phone:hover {
        border-color: var(--secondary);
        background: var(--white);
        color: var(--secondary-hover);
    }

    .drawer-btn-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--secondary) 0%, var(--info) 100%);
        color: var(--white) !important;
        font-size: 14.5px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 224, 255, 0.25);
        transition: var(--transition);
        text-align: center;
    }

    .drawer-btn-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 224, 255, 0.35);
    }

    /* Hamburger icon transition rotation when menu button is active */
    .mobile-menu-btn i {
        transition: transform 0.3s ease;
    }

    .mobile-menu-btn.active i {
        transform: rotate(90deg);
    }
}

/* =====================================================
   MOBILE RESPONSIVE UPDATES FOR PANEL AND APPOINTMENT FORM
   ===================================================== */
@media (max-width: 768px) {
    /* Topbar */
    .panel-topbar-inner {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 12px;
    }
    .panel-brand {
        align-items: center;
        text-align: center;
    }
    .panel-brand .logo {
        font-size: 15px;
    }
    .panel-nav-actions {
        width: 100%;
        justify-content: stretch;
        gap: 8px;
    }
    .panel-nav-link {
        flex: 1;
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Container */
    .panel-container {
        padding: 16px 12px 40px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .stat-box {
        padding: 16px 20px;
    }
    .stat-val {
        font-size: 26px;
    }

    /* Toolbar */
    .panel-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }
    .kontrol-arama {
        width: 100%;
    }
    .panel-filters {
        width: 100%;
        display: flex;
        gap: 8px;
    }
    .filtre-group {
        flex: 1;
        justify-content: center;
        padding: 8px 10px;
    }
    .filtre-group select {
        width: 100%;
        font-size: 12px;
    }

    /* Appointment List Table to Card conversion */
    .randevu-table-header {
        display: none !important;
    }
    .randevu-satir {
        grid-template-columns: 1fr !important;
        padding: 16px;
        gap: 12px;
        border-bottom: 2px solid #e2e8f0;
        background: white;
        border-radius: 12px;
        margin-bottom: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    }
    .randevu-satir:last-child {
        margin-bottom: 0;
    }
    .rt-col {
        padding-right: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    /* Column-specific card details */
    .rt-col-hasta {
        border-bottom: 1px dashed #e2e8f0;
        padding-bottom: 10px;
        margin-bottom: 4px;
        align-items: center;
    }
    .rt-col-hasta .hasta-bilgi {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    .rt-col-hasta .hasta-ad {
        font-size: 15px;
    }

    /* Subgrid-like structure using CSS grid for 2-line fields */
    .rt-col-tarih {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .rt-col-tarih::before {
        content: "Saat";
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
    }
    .rt-col-tarih .tarih-saat {
        font-size: 13px;
        font-weight: 600;
        color: #0f172a;
    }

    .rt-col-iletisim {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        width: 100%;
    }
    .rt-col-iletisim::before {
        content: "İletişim";
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
        grid-row: span 2;
    }
    .rt-col-iletisim .iletisim-link {
        grid-column: 2;
        justify-self: end;
        text-align: right;
        font-size: 13px;
    }
    .rt-col-iletisim .iletisim-email {
        grid-column: 2;
        justify-self: end;
        text-align: right;
        font-size: 12px;
    }

    .rt-col-durum {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .rt-col-durum::before {
        content: "Durum";
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
    }

    .rt-col-islem {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f1f5f9;
        padding-top: 12px;
        margin-top: 4px;
        width: 100%;
    }
    .rt-col-islem::before {
        content: "İşlem";
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
    }
}

@media (max-width: 500px) {
    /* Appointment Booking Form */
    .split-layout {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }
    .split-form {
        padding: 24px 16px;
    }
    .form-wrapper h3 {
        font-size: 22px;
    }
    .form-wrapper p.form-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Login Page */
    .login-wrapper {
        padding: 16px;
    }
    .login-box {
        padding: 30px 20px;
        border-radius: 16px;
    }
}

/* ==========================================================================
   RANDUVU YÖNETİM ALANI YENİ BİLEŞEN STİLLERİ (Tabs & Calendar)
   ========================================================================= */

/* Görünüm Değiştirici (Tabs) */
.panel-view-tabs {
    display: flex;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.view-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-tab-btn:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.5);
}

.view-tab-btn.active {
    background: white;
    color: #002B45;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Görünüm İçerik Panelleri */
.view-panel-pane {
    display: none;
}

.view-panel-pane.active {
    display: block;
}

/* Gün Gruplama Başlıkları (Ajanda Görünümü) */
.agenda-day-group {
    margin-bottom: 28px;
}

.agenda-day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-left: 4px solid var(--secondary, #00e0ff);
    border-radius: 0 8px 8px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.agenda-day-header i {
    color: #002b45;
}

/* Takvim Görünümü */
.calendar-container {
    background: white;
    border-radius: 16px;
    border: 1px solid #e8eef4;
    box-shadow: 0 4px 12px rgba(0, 43, 69, 0.04);
    padding: 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-month-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.cal-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-nav-btn:hover {
    background: #f8fafc;
    color: var(--secondary, #00e0ff);
    border-color: var(--secondary, #00e0ff);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding-top: 10px;
}

.calendar-day-box {
    min-height: 100px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.calendar-day-box:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.calendar-day-box.selected {
    border-color: #00b4d8;
    background: rgba(0, 180, 216, 0.02);
    box-shadow: inset 0 0 0 1px #00b4d8;
}

.calendar-day-box.today {
    background: rgba(0, 224, 255, 0.05);
}

.calendar-day-box.today .day-number {
    background: var(--secondary, #00e0ff);
    color: #002B45;
    font-weight: 700;
}

.calendar-day-box.other-month {
    background: #fafafa;
    opacity: 0.5;
}

.day-number {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.calendar-day-events {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 70px;
}

.calendar-day-event {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.calendar-day-event.approved {
    background: #DCFCE7;
    color: #15803D;
    border-left: 2px solid #16A34A;
}

.calendar-day-event.pending {
    background: #FEF9C3;
    color: #A16207;
    border-left: 2px solid #CA8A04;
}

.calendar-day-event.cancelled {
    background: #FEE2E2;
    color: #B91C1C;
    border-left: 2px solid #DC2626;
}

.calendar-day-dots {
    display: none;
    justify-content: center;
    gap: 3px;
    margin-top: auto;
    padding-bottom: 2px;
}

.cal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cal-dot.approved { background: #16A34A; }
.cal-dot.pending { background: #CA8A04; }
.cal-dot.cancelled { background: #DC2626; }

/* Takvim Altı Randevu Detay Listesi */
.calendar-day-details {
    background: white;
    border-radius: 16px;
    border: 1px solid #e8eef4;
    box-shadow: 0 4px 12px rgba(0, 43, 69, 0.04);
    padding: 24px;
}

.day-details-header {
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.day-details-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.empty-state-sm {
    text-align: center;
    padding: 30px 20px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

/* Rozetler ve Aksiyon Butonları Modernleştirmesi */
.durum-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.durum-onaylandi {
    background: #DCFCE7 !important;
    color: #16A34A !important;
}

.durum-beklemede {
    background: #FEF9C3 !important;
    color: #D97706 !important;
}

.durum-iptal {
    background: #FEE2E2 !important;
    color: #DC2626 !important;
}

.islem-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-icon {
    min-width: 44px;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-icon-onayla:hover {
    background: #16A34A;
    color: white;
    border-color: #16A34A;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.btn-icon-iptal:hover {
    background: #DC2626;
    color: white;
    border-color: #DC2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-icon-sil:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* MOBİL GÜNCELLEMELERİ */
@media (max-width: 768px) {
    .panel-view-tabs {
        flex-direction: column;
        padding: 4px;
        gap: 4px;
    }
    
    .view-tab-btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        height: 48px;
    }

    .calendar-container {
        padding: 16px 8px;
    }

    .calendar-day-box {
        min-height: 58px;
        padding: 4px;
        align-items: center;
        justify-content: center;
    }

    .day-number {
        font-size: 14px;
    }

    .calendar-day-events {
        display: none !important;
    }

    .calendar-day-dots {
        display: flex !important;
    }

    .islem-btns {
        width: 100%;
        justify-content: flex-end;
        gap: 12px;
        margin-top: 8px;
    }

    .btn-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
    }

    /* Mobilde dikey sütunlar arası taşmayı önleme */
    .rt-col {
        padding: 6px 0;
    }
}

/* Custom card styling for calendar details to prevent vertical layout on desktop */
.calendar-detail-card {
    background: white;
    margin-bottom: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.card-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #f8fafc;
}

.card-info-row:last-of-type {
    border-bottom: none;
}

.card-info-row span {
    color: #64748b;
    font-weight: 500;
}

.card-info-row strong,
.card-info-row a,
.card-info-row .tarih-saat {
    color: #0f172a;
    font-weight: 600;
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #004d7a;
    border-bottom-color: #00b4d8;
    animation: spin-modern 1.2s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #00b4d8;
    border-bottom-color: #004d7a;
    animation: spin-modern 0.8s linear infinite reverse;
}

@keyframes spin-modern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-address-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}
.footer-address-link:hover {
    color: var(--secondary) !important;
    text-decoration: underline !important;
}