/* ============================================================
   NOVA LOTUS BEAUTY CENTER — Tasarım Sistemi
   Lacivert + Altın premium estetik
   ============================================================ */

:root {
    --navy: #0c1c3a;
    --navy-2: #12264a;
    --navy-3: #1a3260;
    --gold: #c9a24b;
    --gold-grad: linear-gradient(135deg, #ecd393 0%, #c9a24b 48%, #9d7b2c 100%);
    --gold-dark: #a8873a;
    --gold-light: #e8dfc9;
    --cream: #faf7f0;
    --ink: #23293a;
    --muted: #707786;
    --line: #e9e4d8;
    --white: #ffffff;
    --radius: 14px;
    --shadow-sm: 0 2px 10px rgba(12, 28, 58, .06);
    --shadow-md: 0 10px 30px rgba(12, 28, 58, .10);
    --shadow-lg: 0 24px 60px rgba(12, 28, 58, .16);
    --font-head: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Jost', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .25s; }
a:hover { color: var(--navy); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; font-weight: 700; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s ease;
}
.btn-gold { background: var(--gold-grad); color: #fff; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(197, 162, 83, .45); color: #fff; }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--gold-light); color: var(--navy); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #cfd6e4; font-size: 14px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
.topbar a { color: #e8dfc9; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; margin-right: 22px; }
.topbar .fa { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 62px; width: auto; }
.brand-text { display: none; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    display: block; padding: 10px 15px;
    color: var(--navy); font-weight: 500; font-size: 15.5px;
    letter-spacing: .02em; border-radius: 8px;
}
.main-nav a:hover, .main-nav li.active > a { color: var(--gold-dark); }
.main-nav li.active > a { position: relative; }
.main-nav li.active > a::after {
    content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
    height: 2px; background: var(--gold); border-radius: 2px;
}

/* Dropdown */
.has-sub { position: relative; }
.has-sub > a::after { content: " ▾"; font-size: 11px; color: var(--gold); }
.sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 250px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow-lg); padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all .28s ease; display: block !important;
    max-height: 70vh; overflow-y: auto;
}
.has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.sub-menu li a { padding: 9px 14px; border-radius: 8px; font-size: 14.5px; }
.sub-menu li a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-cta { white-space: nowrap; }

/* Mobile nav */
.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; position: absolute; left: 10px; right: 10px; height: 2.5px;
    background: var(--navy); border-radius: 3px; transition: all .3s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

@media (max-width: 991px) {
    .nav-toggle { display: block; }
    .nav-cta { display: none; }
    .main-nav {
        position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
        background: var(--navy); padding: 90px 26px 40px;
        transform: translateX(100%); transition: transform .35s ease;
        overflow-y: auto; z-index: 999;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
    .main-nav a { color: #fff; padding: 12px 10px; font-size: 16px; }
    .main-nav li.active > a::after { display: none; }
    .main-nav li.active > a { color: var(--gold); }
    .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: transparent; border: 0; box-shadow: none; padding: 0 0 0 16px;
        max-height: none;
    }
    .sub-menu li a { color: #cfd6e4; font-size: 14.5px; }
    .sub-menu li a:hover { background: rgba(255,255,255,.06); color: var(--gold); }
}

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
    color: #fff;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(900px 500px at 85% 20%, rgba(197,162,83,.22), transparent 60%);
}
.hero-in {
    position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
    gap: 48px; align-items: center; padding: 90px 0 100px;
}
.hero-kicker {
    display: block; color: var(--gold); font-family: var(--font-head);
    font-style: italic; font-size: 21px; letter-spacing: .04em; margin-bottom: 16px;
    animation: fadeUp .9s ease both;
}
.hero-divider {
    display: flex; align-items: center; gap: 14px; color: var(--gold);
    margin: 4px 0 24px; animation: fadeUp .9s .15s ease both;
}
.hero-divider::before, .hero-divider::after {
    content: ""; height: 1.5px; width: 74px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.hero h1 { animation: fadeUp .9s .05s ease both; }
.hero p.lead { animation: fadeUp .9s .25s ease both; }
.hero-actions { animation: fadeUp .9s .4s ease both; }
.hero-stats { animation: fadeUp .9s .55s ease both; }
.hero-media { animation: fadeUp 1s .3s ease both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-media img { animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-card {
    position: absolute; left: -26px; bottom: 26px;
    background: rgba(12, 28, 58, .82); backdrop-filter: blur(10px);
    border: 1px solid rgba(197,162,83,.45); border-radius: 16px;
    padding: 14px 20px; display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow-lg);
}
.hero-card .fa { color: var(--gold); font-size: 24px; }
.hero-card b { display: block; color: #fff; font-family: var(--font-head); font-size: 17px; }
.hero-card span { color: #aeb9cd; font-size: 13.5px; }
@media (max-width: 900px) { .hero-card { left: 10px; bottom: 10px; } }
.hero h1 { color: #fff; font-size: clamp(38px, 5vw, 60px); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { color: #c9d2e2; font-size: 19px; max-width: 54ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
    border-radius: 22px; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3.4; object-fit: cover; width: 100%;
}
.hero-media::after {
    content: ""; position: absolute; inset: 18px -18px -18px 18px;
    border: 2px solid rgba(197,162,83,.5); border-radius: 22px; z-index: -1;
}
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--gold); }
.hero-stat span { color: #aeb9cd; font-size: 14.5px; }

@media (max-width: 900px) {
    .hero-in { grid-template-columns: 1fr; padding: 60px 0 70px; }
    .hero-media { order: -1; }
    .hero-media::after { display: none; }
}

/* ---------- Page hero (iç sayfalar) ---------- */
.page-hero {
    background: linear-gradient(120deg, var(--navy), var(--navy-3));
    color: #fff; padding: 64px 0 58px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: "✻"; position: absolute; right: 4%; top: -30px;
    font-size: 220px; color: rgba(197,162,83,.10); line-height: 1;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.crumbs { margin-top: 12px; font-size: 14.5px; color: #aeb9cd; }
.crumbs a { color: var(--gold-light); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 8px; color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.tinted { background: var(--cream); }
.section.dark { background: var(--navy); color: #c9d2e2; }
.section.dark h2, .section.dark h3 { color: #fff; }

.sec-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.sec-head.left { margin-inline: 0; text-align: left; }
.sec-kicker {
    display: inline-block; color: var(--gold-dark); font-size: 13.5px;
    font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    margin-bottom: 12px;
}
.section.dark .sec-kicker { color: var(--gold); }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.sec-head p { color: var(--muted); }
.section.dark .sec-head p { color: #aeb9cd; }
.sec-orn { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; color: var(--gold); }
.sec-head.left .sec-orn { justify-content: flex-start; }
.sec-orn::before, .sec-orn::after { content: ""; width: 52px; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold)); }
.sec-orn::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Service card ---------- */
.svc-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .35s ease, box-shadow .35s ease;
    display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12,28,58,.55), transparent 55%);
}
.svc-icon {
    position: absolute; left: 18px; bottom: -24px; z-index: 2;
    width: 54px; height: 54px; border-radius: 14px;
    background: var(--gold-grad);
    color: #fff; display: grid; place-items: center; font-size: 22px;
    box-shadow: 0 8px 20px rgba(197,162,83,.45);
}
.svc-body { padding: 38px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 21px; margin-bottom: 10px; }
.svc-body h3 a { color: var(--navy); }
.svc-body h3 a:hover { color: var(--gold-dark); }
.svc-body p { color: var(--muted); font-size: 15.5px; flex: 1; }
.svc-link {
    margin-top: 16px; font-weight: 600; font-size: 14px; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold-dark);
}
.svc-link:hover { color: var(--navy); }
.svc-link .fa { margin-left: 6px; transition: transform .3s; }
.svc-link:hover .fa { transform: translateX(5px); }

/* ---------- Feature (neden biz) ---------- */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-ic {
    flex: 0 0 56px; width: 56px; height: 56px; border-radius: 16px;
    background: rgba(197,162,83,.14); border: 1px solid rgba(197,162,83,.35);
    color: var(--gold); display: grid; place-items: center; font-size: 22px;
}
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.section.dark .feature p { color: #aeb9cd; font-size: 15.5px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--navy), var(--navy-3));
    border-radius: 22px; padding: 54px; color: #fff;
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::before {
    content: "✻"; position: absolute; left: -20px; bottom: -60px;
    font-size: 240px; color: rgba(197,162,83,.12); line-height: 1;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); position: relative; }
.cta-band p { color: #c9d2e2; margin-top: 8px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Testimonials ---------- */
.testi {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative;
}
.testi::before {
    content: "\201C"; font-family: var(--font-head); font-size: 90px;
    color: var(--gold-light); position: absolute; top: 4px; right: 22px; line-height: 1;
}
.testi .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }
.testi p { color: var(--ink); font-size: 16px; }
.testi .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi .who .avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gold-grad);
    color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-body);
}
.testi .who b { display: block; color: var(--navy); font-family: var(--font-head); font-size: 17px; }
.testi .who span { color: var(--muted); font-size: 14px; }

/* ---------- Detail page layout ---------- */
.detail-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
@media (max-width: 991px) { .detail-wrap { grid-template-columns: 1fr; } }

.detail-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px; }
.detail-hero-img img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.detail-intro {
    font-size: 19px; color: var(--ink); border-left: 3px solid var(--gold);
    padding: 6px 0 6px 22px; margin-bottom: 38px;
}
.detail-block { margin-bottom: 34px; }
.detail-block h2 {
    font-size: 24px; margin-bottom: 12px; padding-bottom: 10px; position: relative;
}
.detail-block h2::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 2.5px;
    background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px;
}
.detail-block p { color: #3d4353; }

/* FAQ */
.faq details {
    border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px;
    background: #fff; overflow: hidden;
}
.faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-family: var(--font-head); font-weight: 700; color: var(--navy);
    font-size: 17.5px; display: flex; justify-content: space-between; align-items: center;
    transition: background .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; font-family: var(--font-body); }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { background: var(--cream); }
.faq .faq-a { padding: 16px 22px 20px; color: var(--muted); }

/* ---------- Sidebar ---------- */
.widget {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.widget h3 {
    font-size: 20px; margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-light);
}
.widget-nav li + li { border-top: 1px dashed var(--line); }
.widget-nav a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 4px; color: var(--ink); font-size: 15.5px;
}
.widget-nav a::after { content: "\f105"; font-family: FontAwesome; color: var(--gold); }
.widget-nav a:hover, .widget-nav li.active a { color: var(--gold-dark); padding-left: 10px; }
.widget-nav li.active a { font-weight: 600; }

.widget.contactw { background: linear-gradient(150deg, var(--navy), var(--navy-3)); border: 0; color: #c9d2e2; }
.widget.contactw h3 { color: #fff; border-color: rgba(197,162,83,.4); }
.widget.contactw li { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; font-size: 15px; }
.widget.contactw .fa { color: var(--gold); margin-top: 5px; width: 18px; text-align: center; }
.widget.contactw a { color: #fff; }
.widget.contactw a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
input[type=text], input[type=email], input[type=tel], input[type=search], select, textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid var(--line);
    border-radius: 10px; font-family: var(--font-body); font-size: 15.5px;
    color: var(--ink); background: #fff; transition: border-color .25s, box-shadow .25s;
}
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(197,162,83,.14);
}
textarea { min-height: 140px; resize: vertical; }

/* ---------- Gallery ---------- */
.gal-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 1/1; display: block;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-cap {
    position: absolute; inset: auto 0 0 0; padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(12,28,58,.85), transparent);
    color: #fff; font-family: var(--font-head); font-size: 19px;
    transform: translateY(8px); opacity: .95; transition: all .35s;
}
.gal-item:hover .gal-cap { transform: translateY(0); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
    border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/3.4;
    margin-bottom: 18px; position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 { font-size: 20px; }
.team-card span { color: var(--gold-dark); font-size: 14.5px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- Blog card ---------- */
.post-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .35s, box-shadow .35s;
    display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-media { aspect-ratio: 16/9.5; overflow: hidden; position: relative; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post-card:hover .post-media img { transform: scale(1.06); }
.post-tag {
    position: absolute; left: 16px; top: 16px; background: var(--gold);
    color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .06em;
    padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
}
.post-tag:hover { background: var(--navy); color: #fff; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-meta { color: var(--muted); font-size: 13.5px; margin-bottom: 10px; letter-spacing: .04em; }
.post-body h3 { font-size: 20px; margin-bottom: 10px; }
.post-body h3 a { color: var(--navy); }
.post-body h3 a:hover { color: var(--gold-dark); }
.post-body p { color: var(--muted); font-size: 15px; flex: 1; }

/* ---------- Product card ---------- */
.prod-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; text-align: center; transition: transform .35s, box-shadow .35s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-media { aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover .prod-media img { transform: scale(1.06); }
.prod-body { padding: 20px; }
.prod-body h3 { font-size: 18px; margin-bottom: 6px; }
.prod-body .price { color: var(--gold-dark); font-weight: 600; font-size: 14.5px; margin-bottom: 14px; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aeb9cd; margin-top: 0; }
.footer-top {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px; padding: 70px 0 50px;
}
@media (max-width: 991px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.f-brand img { height: 74px; width: auto; margin-bottom: 18px; background: #fff; padding: 8px 14px; border-radius: 12px; }
.f-brand p { font-size: 15px; max-width: 34ch; }
.f-slogan { color: var(--gold); font-family: var(--font-head); font-style: italic; font-size: 18px; margin-top: 14px; }
.site-footer h4 {
    color: #fff; font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.site-footer h4::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.f-links li { padding: 5px 0; }
.f-links a { color: #aeb9cd; font-size: 15px; }
.f-links a:hover { color: var(--gold); padding-left: 6px; }
.f-contact li { display: flex; gap: 12px; padding: 7px 0; font-size: 15px; align-items: flex-start; }
.f-contact .fa { color: var(--gold); margin-top: 5px; width: 18px; text-align: center; }
.f-contact a { color: #e6ebf4; }
.f-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 14px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    border: 1px solid rgba(197,162,83,.4); color: var(--gold);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ---------- Floating call button ---------- */
.call-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 1200;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--gold-grad);
    color: #fff !important; display: grid; place-items: center; font-size: 22px;
    box-shadow: 0 12px 30px rgba(197,162,83,.5);
    animation: fabPulse 2.6s infinite;
}
@keyframes fabPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

/* ---------- Misc ---------- */
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .mt-4 { margin-top: 48px; }
.mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 32px; }
.text-center { text-align: center; }
.gold { color: var(--gold-dark); }

.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.about-badge {
    position: absolute; left: -18px; bottom: -18px;
    background: var(--gold-grad);
    color: #fff; border-radius: 16px; padding: 20px 26px;
    font-family: var(--font-head); box-shadow: var(--shadow-md);
}
.about-badge b { display: block; font-size: 26px; }
@media (max-width: 640px) { .about-badge { left: 10px; bottom: 10px; } }

.check-list li { display: flex; gap: 12px; padding: 7px 0; align-items: flex-start; }
.check-list .fa { color: var(--gold); margin-top: 6px; }

/* Pagination */
.pagination-nl { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination-nl a {
    min-width: 42px; height: 42px; display: grid; place-items: center;
    border: 1.5px solid var(--line); border-radius: 10px; color: var(--navy); font-weight: 600;
}
.pagination-nl a.current, .pagination-nl a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Hizmetlerimiz menüsü — Bayan / Bay grupları */
/* align-items: temanin .main-nav ul { align-items:center } kuralini eziyoruz,
   yoksa kisa olan Bay sutunu dikeyde ortalanip kayik duruyor. */
.sub-menu-grouped { min-width: 640px; display: flex !important; align-items: flex-start; gap: 8px; padding: 14px; }
.sub-menu-grouped .sub-group { flex: 1 1 0; min-width: 0; }
/* Bayan listesi uzun; iki kolona bolunerek menu kaydirmadan sigiyor */
.sub-menu-grouped .sub-group:first-child { flex: 2 1 0; }
.sub-menu-grouped .sub-group:first-child .sub-group-list { column-count: 2; column-gap: 6px; }
.sub-menu-grouped .sub-group-list li { break-inside: avoid; }
.sub-menu-grouped .sub-group + .sub-group { border-left: 1px solid var(--line); padding-left: 8px; }
.sub-menu-grouped .sub-group-title {
    display: block; padding: 6px 14px 10px; margin-bottom: 4px;
    font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
    color: var(--gold-dark); border-bottom: 1px solid var(--line);
}
.sub-menu-grouped .sub-group-title:hover { background: transparent; }
/* .main-nav ul flex kuralini ezip hizmet adlarini alt alta diziyoruz */
.sub-menu-grouped .sub-group-list { display: block; gap: 0; }
.sub-menu-grouped .sub-group-list li a { display: block; padding: 7px 14px; font-size: 14px; white-space: normal; }

@media (max-width: 991px) {
    .sub-menu-grouped { min-width: 0; display: block !important; padding: 8px; }
    .sub-menu-grouped .sub-group + .sub-group { border-left: 0; padding-left: 0; margin-top: 8px; }
}

/* Hizmetler sayfası — Bayan / Bay grup blokları */
.svc-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.svc-group { scroll-margin-top: 110px; }
.svc-group + .svc-group { margin-top: 64px; }
.sec-head-sm { max-width: 520px; margin-bottom: 36px; }
.sec-head-sm h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 10px; }

/* Google Maps gömülü harita */
.map-wrap {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; }

.f-map { margin-top: 18px; }
.f-map iframe {
    display: block; width: 100%; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
}
.f-map-link {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 10px; font-size: 14.5px; font-weight: 600;
}
.f-map-link .fa { color: var(--gold); }

/* Galeri kaynak notu */
.gal-note { margin-top: 28px; text-align: center; font-size: 14.5px; color: var(--muted); }
.gal-note a { color: var(--gold-dark); font-weight: 600; }
