/* =============================================
   FreshLab — Ana CSS
   ============================================= */

:root {
    --green-dark:   #1a4d3a;
    --green-mid:    #2d7a5f;
    --teal:         #3ab8a0;
    --teal-light:   #7dd8cb;
    --cream:        #f4f9f7;
    --white:        #ffffff;
    --gray-text:    #6b7280;
    --dark-text:    #1a2e25;
    --shadow:       0 4px 20px rgba(26,77,58,0.10);
    --shadow-hover: 0 8px 32px rgba(26,77,58,0.18);
    --radius:       14px;
    --radius-sm:    8px;
    --transition:   all 0.26s cubic-bezier(0.4,0,0.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:'Segoe UI','Inter',system-ui,-apple-system,sans-serif;
    background:var(--cream);
    color:var(--dark-text);
    line-height:1.7;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; }

/* ---- NAVBAR ---- */
.navbar {
    position:sticky;
    top:0;
    z-index:1000;
    background:var(--white);
    box-shadow:0 2px 16px rgba(26,77,58,0.08);
    padding:0 2rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:128px;         /* 3× logo için yüksek navbar */
}

.navbar-brand {
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.navbar-brand img.brand-logo {
    height:116px;         /* 3× büyük logo */
    width:auto;
    object-fit:contain;
}

.nav-links {
    display:flex;
    align-items:center;
    gap:0.1rem;
    list-style:none;
    flex-wrap:nowrap;
}

.nav-links > li > a {
    padding:0.45rem 0.8rem;
    border-radius:var(--radius-sm);
    font-size:0.88rem;
    font-weight:500;
    color:var(--dark-text);
    transition:var(--transition);
    white-space:nowrap;
    display:block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    background:var(--cream);
    color:var(--green-mid);
}

/* ---- DROPDOWN — click-based, stays open ---- */
.nav-dropdown { position:relative; }
.nav-dropdown > a::after { content:' ▾'; font-size:0.68rem; }

.dropdown-menu {
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    background:var(--white);
    border-radius:var(--radius);
    box-shadow:var(--shadow-hover);
    min-width:240px;
    padding:0.5rem;
    list-style:none;
    border:1px solid rgba(58,184,160,0.12);
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transform:translateY(-6px);
    transition:opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

/* open class added by JS */
.nav-dropdown.dropdown-open .dropdown-menu {
    visibility:visible;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

.dropdown-menu li a {
    display:block;
    padding:0.6rem 1rem;
    border-radius:var(--radius-sm);
    font-size:0.88rem;
    color:var(--dark-text);
    transition:var(--transition);
}
.dropdown-menu li a:hover {
    background:var(--cream);
    color:var(--teal);
    padding-left:1.3rem;
}

/* Auth butonları */
.btn-login {
    padding:0.42rem 0.9rem;
    border-radius:var(--radius-sm);
    font-size:0.85rem;
    font-weight:600;
    color:var(--green-mid);
    border:2px solid var(--green-mid);
    transition:var(--transition);
    background:none;
    cursor:pointer;
    font-family:inherit;
    white-space:nowrap;
}
.btn-login:hover { background:var(--green-mid); color:var(--white); }

.btn-register {
    padding:0.42rem 0.9rem;
    border-radius:var(--radius-sm);
    font-size:0.85rem;
    font-weight:600;
    background:linear-gradient(135deg,var(--teal),var(--green-mid));
    color:var(--white);
    transition:var(--transition);
    display:inline-block;
    white-space:nowrap;
}
.btn-register:hover { opacity:0.88; transform:translateY(-1px); }

/* Hamburger */
.hamburger {
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    padding:4px;
    background:none;
    border:none;
    flex-shrink:0;
}
.hamburger span {
    display:block;
    width:24px;
    height:2px;
    background:var(--green-dark);
    border-radius:2px;
    transition:var(--transition);
}

/* ---- BUTONLAR ---- */
.btn-primary {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0.8rem 2rem;
    background:linear-gradient(135deg,var(--teal),var(--green-mid));
    color:var(--white);
    border:none;
    border-radius:var(--radius);
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
    transition:var(--transition);
    box-shadow:0 4px 16px rgba(58,184,160,0.35);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(58,184,160,0.45); color:var(--white); }

.btn-outline {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0.75rem 1.8rem;
    background:transparent;
    color:var(--white);
    border:2px solid rgba(255,255,255,0.7);
    border-radius:var(--radius);
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
}
.btn-outline:hover { background:rgba(255,255,255,0.15); color:var(--white); }

.btn-sm { padding:0.5rem 1.2rem; font-size:0.875rem; }

.btn-danger {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:0.5rem 1rem;
    background:#fee2e2;
    color:#dc2626;
    border:1px solid #fca5a5;
    border-radius:var(--radius-sm);
    font-size:0.85rem;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
}
.btn-danger:hover { background:#dc2626; color:white; }

/* ---- HERO — fotoğraf slideshow ---- */
.hero {
    color:var(--white);
    padding:6rem 2rem 5.5rem;
    text-align:center;
    position:relative;
    overflow:hidden;
    width:100%;
    background:var(--green-dark); /* fallback */
}

/* Slideshow katmanları */
.hero-slides {
    position:absolute;
    inset:0;
    z-index:0;
}
.hero-slide {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity:1; }

/* Koyu yeşil gradient overlay — metin okunabilirliği */
.hero-overlay {
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        135deg,
        rgba(26,77,58,0.78) 0%,
        rgba(45,122,95,0.68) 50%,
        rgba(58,184,160,0.60) 100%
    );
}

/* Slide göstergesi (dots) */
.hero-dots {
    position:absolute;
    bottom:1.2rem;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    gap:8px;
}
.hero-dot {
    width:8px; height:8px;
    border-radius:50%;
    background:rgba(255,255,255,0.4);
    border:none; cursor:pointer; padding:0;
    transition:background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active {
    background:var(--white);
    transform:scale(1.3);
}

.hero-content {
    position:relative;
    z-index:2;
    max-width:750px;
    margin:0 auto;
}

.hero-badge {
    display:inline-block;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.3);
    color:var(--teal-light);
    padding:0.28rem 0.9rem;    /* daha küçük rozet */
    border-radius:50px;
    font-size:0.75rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:1.2rem;
}

.hero h1 {
    font-size:clamp(2rem,5vw,3.4rem);
    font-weight:900;
    line-height:1.2;
    margin-bottom:1.2rem;
    letter-spacing:-1px;
}

.hero p {
    font-size:1.05rem;
    opacity:0.85;
    margin-bottom:2.2rem;
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
}

.hero-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ---- SECTION ---- */
.section { padding:5rem 0; width:100%; }
.section-alt { background:var(--white); }

.container { width:100%; max-width:1280px; margin:0 auto; padding:0 2rem; }

.section-header { text-align:center; margin-bottom:3.5rem; }

.section-label {
    display:inline-block;
    background:linear-gradient(135deg,rgba(58,184,160,0.12),rgba(45,122,95,0.12));
    color:var(--teal);
    padding:0.28rem 0.9rem;
    border-radius:50px;
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:0.8rem;
}

.section-header h2 { font-size:clamp(1.7rem,3vw,2.5rem); font-weight:800; color:var(--green-dark); margin-bottom:0.75rem; }
.section-header p { color:var(--gray-text); font-size:1.05rem; max-width:560px; margin:0 auto; }

/* ---- HİZMET KARTLARI — 3 sütun ---- */
.cards-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
}

.service-card {
    background:var(--white);
    border-radius:var(--radius);
    padding:2rem 1.5rem;
    box-shadow:var(--shadow);
    border:1px solid rgba(58,184,160,0.08);
    transition:var(--transition);
    display:flex;
    flex-direction:column;
    gap:0.8rem;
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); border-color:rgba(58,184,160,0.25); }

.card-icon {
    font-size:2.5rem;
    width:60px; height:60px;
    background:linear-gradient(135deg,rgba(58,184,160,0.12),rgba(45,122,95,0.08));
    border-radius:14px;
    display:flex; align-items:center; justify-content:center;
}

.service-card h3 { font-size:1.05rem; font-weight:700; color:var(--green-dark); }
.service-card p  { font-size:0.9rem; color:var(--gray-text); flex:1; }
.card-price { font-size:0.88rem; color:var(--teal); font-weight:700; }
.card-link  { display:inline-flex; align-items:center; gap:4px; font-size:0.88rem; font-weight:600; color:var(--green-mid); margin-top:0.5rem; transition:var(--transition); }
.card-link:hover { gap:8px; color:var(--teal); }

/* ---- NASIL ÇALIŞIR — ok'lu ---- */
.how-flow { display:flex; align-items:stretch; justify-content:center; width:100%; }

.how-step-wrap { display:flex; align-items:center; flex:1; }

.how-step {
    flex:1;
    text-align:center;
    padding:2rem 1.2rem;
    background:var(--white);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    border:1px solid rgba(58,184,160,0.1);
}

.how-arrow {
    flex-shrink:0;
    width:52px;
    display:flex; align-items:center; justify-content:center;
    color:var(--teal);
    font-size:1.6rem;
    font-weight:900;
    position:relative;
    z-index:1;
}

.step-number {
    width:52px; height:52px;
    background:linear-gradient(135deg,var(--teal),var(--green-mid));
    color:var(--white);
    font-size:1.3rem; font-weight:800;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 1rem;
    box-shadow:0 4px 14px rgba(58,184,160,0.4);
}
.how-step h3 { font-size:1rem; font-weight:700; color:var(--green-dark); margin-bottom:0.5rem; }
.how-step p  { font-size:0.85rem; color:var(--gray-text); }

/* ---- YORUMLAR ---- */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }

.review-card {
    background:var(--white);
    border-radius:var(--radius);
    padding:1.8rem;
    box-shadow:var(--shadow);
    border-left:4px solid var(--teal);
    display:flex; flex-direction:column; gap:0.6rem;
}
.review-stars  { color:#f59e0b; font-size:1rem; }
.review-text   { font-size:0.95rem; color:var(--dark-text); font-style:italic; line-height:1.6; flex:1; }
.review-author { font-weight:700; font-size:0.9rem; color:var(--green-dark); }
.review-location { font-size:0.8rem; color:var(--gray-text); }

/* Yorum formu */
.review-form-section {
    background:linear-gradient(135deg,rgba(58,184,160,0.05),rgba(45,122,95,0.05));
    border:1px solid rgba(58,184,160,0.15);
    border-radius:var(--radius);
    padding:2rem;
    margin-top:1.5rem;
}
.review-form-section h3 { font-size:1.1rem; font-weight:800; color:var(--green-dark); margin-bottom:1.2rem; }

.star-rating { display:flex; gap:0.3rem; margin-bottom:0.4rem; flex-direction:row-reverse; justify-content:flex-end; }
.star-rating input { display:none; }
.star-rating label { font-size:1.6rem; color:#d1d5db; cursor:pointer; transition:color 0.15s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color:#f59e0b; }

/* ---- CTA ---- */
.cta-section {
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color:var(--white);
    text-align:center;
    padding:5rem 2rem;
    position:relative; overflow:hidden; width:100%;
}
.cta-section::before {
    content:'';
    position:absolute;
    top:-50%; right:-10%;
    width:400px; height:400px;
    background:rgba(58,184,160,0.12);
    border-radius:50%;
}
.cta-section h2 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:900; margin-bottom:1rem; position:relative; }
.cta-section p  { font-size:1.05rem; opacity:0.85; margin-bottom:2rem; position:relative; }

/* ---- HİZMET DETAY ---- */
.service-detail-hero {
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color:var(--white);
    padding:4rem 2rem; text-align:center; width:100%;
}
.service-detail-hero h1 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; margin-bottom:0.75rem; }
.service-detail-hero p  { font-size:1.05rem; opacity:0.85; max-width:560px; margin:0 auto 1.5rem; }
.detail-icon { font-size:4rem; margin-bottom:1rem; }

.price-badge {
    display:inline-block;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.3);
    padding:0.5rem 1.5rem;
    border-radius:50px;
    font-size:1.1rem; font-weight:700; margin-bottom:1.5rem;
}

.detail-body { max-width:900px; margin:3rem auto; padding:0 2rem; }
.detail-body h2 { font-size:1.5rem; font-weight:800; color:var(--green-dark); margin-bottom:1rem; }
.detail-body p  { color:var(--gray-text); font-size:1rem; line-height:1.8; margin-bottom:2rem; }

.detail-meta {
    display:flex; gap:1.5rem; flex-wrap:wrap;
    background:var(--white); border-radius:var(--radius);
    padding:1.5rem; box-shadow:var(--shadow); margin-bottom:2rem;
}
.detail-meta-item { display:flex; align-items:center; gap:8px; font-size:0.95rem; color:var(--dark-text); }
.detail-meta-item strong { color:var(--green-dark); }

/* ---- RANDEVU ---- */
.page-hero {
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color:var(--white); padding:3rem 2rem; text-align:center; width:100%;
}
.page-hero h1 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:900; margin-bottom:0.5rem; }
.page-hero p  { opacity:0.85; font-size:1rem; }

.appointments-container { max-width:960px; margin:3rem auto; padding:0 2rem; }

.tab-section { margin-bottom:3rem; }
.tab-section h2 {
    font-size:1.3rem; font-weight:800; color:var(--green-dark);
    margin-bottom:1.2rem; padding-bottom:0.6rem;
    border-bottom:2px solid var(--teal); display:inline-block;
}

.appointment-card {
    background:var(--white); border-radius:var(--radius);
    padding:1.5rem; box-shadow:var(--shadow);
    border:1px solid rgba(58,184,160,0.1); margin-bottom:1rem;
}
.appointment-card-header { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; flex-wrap:wrap; }
.appointment-info h3 { font-size:1.05rem; font-weight:700; color:var(--green-dark); margin-bottom:0.4rem; }
.appointment-info p  { font-size:0.88rem; color:var(--gray-text); margin-bottom:0.2rem; }

.status-badge {
    display:inline-block; padding:0.3rem 0.8rem; border-radius:50px;
    font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px;
}
.status-beklemede  { background:#fef9c3; color:#854d0e; }
.status-onaylandi  { background:#dbeafe; color:#1e40af; }
.status-tamamlandi { background:#dcfce7; color:#166534; }
.status-iptal      { background:#fee2e2; color:#991b1b; }

.empty-state { text-align:center; padding:3rem; color:var(--gray-text); background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); }
.empty-state .empty-icon { font-size:3rem; margin-bottom:1rem; }

/* ---- FORM ---- */
.form-container { max-width:660px; margin:3rem auto; padding:0 2rem; }
.form-card { background:var(--white); border-radius:var(--radius); padding:2.5rem; box-shadow:var(--shadow); }
.form-card h2 { font-size:1.5rem; font-weight:800; color:var(--green-dark); margin-bottom:1.5rem; text-align:center; }

.form-group { margin-bottom:1.2rem; }
.form-group label { display:block; font-size:0.88rem; font-weight:600; color:var(--dark-text); margin-bottom:0.4rem; }
.form-control {
    width:100%; padding:0.75rem 1rem;
    border:1.5px solid #d1d5db; border-radius:var(--radius-sm);
    font-size:0.95rem; color:var(--dark-text); background:var(--white);
    transition:var(--transition); outline:none; font-family:inherit;
}
.form-control:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(58,184,160,0.12); }
.form-control.is-invalid { border-color:#dc2626; }
.invalid-feedback { display:block; color:#dc2626; font-size:0.82rem; margin-top:0.3rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ---- AUTH ---- */
.auth-page {
    min-height:100vh;
    background:linear-gradient(135deg,var(--green-dark) 0%,var(--teal) 100%);
    display:flex; align-items:center; justify-content:center; padding:2rem;
}
.auth-card {
    background:var(--white); border-radius:20px; padding:2.8rem;
    width:100%; max-width:440px;
    box-shadow:0 20px 60px rgba(26,77,58,0.25);
}
.auth-logo { text-align:center; margin-bottom:1.8rem; }
.auth-logo img { height:72px; width:auto; }   /* büyük logo */

.auth-card h2         { font-size:1.4rem; font-weight:800; color:var(--green-dark); text-align:center; margin-bottom:0.4rem; }
.auth-card .auth-subtitle { text-align:center; color:var(--gray-text); font-size:0.9rem; margin-bottom:1.8rem; }
.auth-footer          { text-align:center; margin-top:1.2rem; font-size:0.88rem; color:var(--gray-text); }
.auth-footer a        { color:var(--teal); font-weight:600; }

/* ---- FOOTER ---- */
footer {
    background:var(--green-dark);
    color:rgba(255,255,255,0.85);
    padding:3.5rem 2rem 1.5rem;
    width:100%;
}
.footer-grid {
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap:3rem;
    max-width:1280px;
    margin:0 auto 2.5rem;
}

/* Footer logosu — direkt logo, arka plan yok */
.footer-logo {
    height:90px;
    width:auto;
    max-width:280px;
    margin-bottom:1rem;
    display:block;
    object-fit:contain;
}

.footer-brand p { font-size:0.9rem; line-height:1.7; opacity:0.8; margin-top:0.5rem; }

.footer-col h4 {
    font-size:0.88rem; font-weight:700; color:var(--teal-light);
    text-transform:uppercase; letter-spacing:1.2px; margin-bottom:1rem;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:0.6rem; }
.footer-col ul li a { font-size:0.9rem; opacity:0.8; transition:var(--transition); }
.footer-col ul li a:hover { opacity:1; color:var(--teal-light); }

.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:1.2rem; text-align:center;
    font-size:0.82rem; opacity:0.6;
    max-width:1280px; margin:0 auto;
}

/* ---- ALERT ---- */
.alert { padding:1rem 1.5rem; border-radius:var(--radius-sm); margin-bottom:1.2rem; font-size:0.92rem; font-weight:500; }
.alert-success { background:#dcfce7; color:#166534; border:1px solid #bbf7d0; }
.alert-error   { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; }

/* ---- CONTENT PAGES ---- */
.content-page { max-width:900px; margin:3rem auto; padding:0 2rem; }
.content-page h1   { font-size:2rem; font-weight:900; color:var(--green-dark); margin-bottom:0.5rem; }
.content-page .lead { font-size:1.1rem; color:var(--gray-text); margin-bottom:2rem; }
.content-page h2   { font-size:1.3rem; font-weight:800; color:var(--green-dark); margin:2rem 0 0.8rem; }
.content-page p    { color:var(--dark-text); line-height:1.8; margin-bottom:1rem; }

.info-card { background:var(--white); border-radius:var(--radius); padding:1.5rem; box-shadow:var(--shadow); display:flex; align-items:flex-start; gap:1rem; margin-bottom:1rem; }
.info-icon { font-size:1.8rem; flex-shrink:0; }
.info-card h3 { font-size:0.95rem; font-weight:700; color:var(--green-dark); margin-bottom:0.3rem; }
.info-card p, .info-card a { font-size:0.9rem; color:var(--gray-text); }
.info-card a:hover { color:var(--teal); }

/* ---- RESPONSIVE ---- */
@media (max-width:1024px) {
    .cards-grid { grid-template-columns:repeat(2,1fr); }
    .reviews-grid { grid-template-columns:repeat(2,1fr); }
    .how-flow { flex-wrap:wrap; gap:1rem; }
    .how-step-wrap { flex:1 1 calc(50% - 1rem); min-width:180px; }
    .how-arrow { display:none; }
}

@media (max-width:900px) {
    .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
    .navbar { padding:0 1rem; height:96px; }
    .navbar-brand img.brand-logo { height:84px; }

    .nav-links {
        display:none;
        position:absolute;
        top:76px; left:0; right:0;
        background:var(--white);
        flex-direction:column;
        align-items:flex-start;
        padding:1rem;
        box-shadow:0 8px 24px rgba(26,77,58,0.12);
        gap:0;
    }
    .nav-links.open { display:flex; }
    .nav-links > li > a { width:100%; padding:0.75rem 1rem; }

    .dropdown-menu {
        position:static;
        box-shadow:none; border:none;
        padding:0 0 0 1rem;
        background:var(--cream);
        border-radius:0;
        visibility:visible; opacity:1; pointer-events:auto;
        transform:none; transition:none;
        display:none;
    }
    .nav-dropdown.dropdown-open .dropdown-menu { display:block; }

    .hamburger { display:flex; }
    .cards-grid { grid-template-columns:1fr; }
    .reviews-grid { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; gap:2rem; }
    .detail-meta { flex-direction:column; }
    .appointment-card-header { flex-direction:column; }
    .how-flow { flex-direction:column; gap:0.8rem; }
    .how-arrow { display:none; }
}

@media (max-width:480px) {
    .hero h1 { font-size:1.7rem; }
    .btn-primary,.btn-outline { padding:0.7rem 1.4rem; font-size:0.9rem; }
    .auth-card { padding:2rem 1.5rem; }
    .form-card { padding:1.8rem 1.5rem; }
}


/* =============================================
   freshlab.css — EK STILLER
   Bu satırları mevcut public/css/freshlab.css
   dosyasının SONUNA ekleyin.
   ============================================= */

/* ---- PROFIL DROPDOWN: çıkış butonu ---- */
.dropdown-logout-btn {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: #dc2626;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.dropdown-logout-btn:hover {
    background: #fee2e2;
    padding-left: 1.3rem;
}

/* ---- RANDEVU SEKMELERİ ---- */
.appointment-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--cream);
    color: var(--gray-text);
    border: 1.5px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.tab-btn:hover {
    background: #e5f5f2;
    color: var(--green-mid);
}
.tab-btn.active {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
}

/* ---- RANDEVU DURUM BADGELERİ ---- */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.status-beklemede  { background: #fef3c7; color: #92400e; }
.status-onaylandi  { background: #d1fae5; color: #065f46; }
.status-reddedildi { background: #fee2e2; color: #991b1b; }
.status-tamamlandi { background: #dbeafe; color: #1e40af; }
.status-iptal      { background: #f3f4f6; color: #6b7280; }

/* ---- PROFİL SAYFASI ---- */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58,184,160,0.08);
}
.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.4rem;
}
.form-group {
    margin-bottom: 1.2rem;
}

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    color: var(--white);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1rem;
    opacity: 0.85;
}

/* ---- APPOINTMENTS CONTAINER ---- */
.appointments-container {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 2rem;
}

/* ---- REVIEW FORM SECTION ---- */
.review-form-section {
    background: var(--cream);
    border: 1.5px solid rgba(58,184,160,0.2);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
}
.review-form-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

/* ---- STAR RATING ---- */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    width: fit-content;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 1.6rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f59e0b;
}

/* ---- APPOINTMENT CARD ---- */
.appointment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58,184,160,0.08);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.appointment-card:hover {
    box-shadow: var(--shadow-hover);
}
.appointment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.appointment-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}
.appointment-info p {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-bottom: 0.2rem;
}

/* ---- EMPTY STATE ---- */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-text);
}
.empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

/* ---- RESPONSIVE EKLEMELERİ ---- */
@media (max-width: 600px) {
    .appointment-tabs { gap: 0.3rem; }
    .tab-btn { font-size: 0.8rem; padding: 0.45rem 0.8rem; }
    .appointment-card-header { flex-direction: column; }
}

/* ---- YORUM YAPILDI BADGE ---- */
.review-done-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #dcfce7;
    color: #166534;
    border: 1.5px solid #bbf7d0;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---- REVIEW CARD (anasayfa) ---- */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58,184,160,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.review-text {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}
.review-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-dark);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .reviews-grid { grid-template-columns: 1fr; } }

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}
.cta-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight:900; margin-bottom:1rem; }
.cta-section p  { font-size:1.05rem; opacity:0.85; margin-bottom:2rem; max-width:560px; margin-left:auto; margin-right:auto; }
/* ===== REVIEWS SLIDER ===== */
.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews-slide {
    min-width: 100%;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.reviews-dot.active {
    background: var(--primary, #2ecc71);
}

.reviews-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-arrow:hover {
    background: var(--primary, #2ecc71);
    color: white;
    border-color: var(--primary, #2ecc71);
}

.reviews-arrow-left  { left: -10px; }
.reviews-arrow-right { right: -10px; }