/* ============================================================
 *  ÇARE HUKUK BÜROSU — Premium Design System
 *  v2.0 | Animations + Elegant UI
 * ============================================================ */

/* ── Google Fonts Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --care-navy:       #0f1c2e;
    --care-navy-dark:  #070f1a;
    --care-navy-mid:   #162540;
    --care-gold:       #c9a84c;
    --care-gold-hover: #debb6a;
    --care-gold-rgb:   201,168,76;
    --care-cream:      #f8f6f1;
    --care-text:       #3a3a3a;
    --care-muted:      #777777;
    --radius:          10px;
    --radius-lg:       16px;
    --shadow-sm:       0 4px 20px rgba(0,0,0,0.07);
    --shadow:          0 8px 40px rgba(0,0,0,0.11);
    --shadow-lg:       0 20px 60px rgba(0,0,0,0.18);
    --transition:      all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    --transition-fast: all 0.25s ease;
}

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--care-text);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.01em;
}
p { line-height: 1.85; }

/* ── Page Loader ──────────────────────────────────────────── */
.care-page-loader {
    position: fixed;
    inset: 0;
    background: var(--care-navy);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}
.care-page-loader.care-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Logo + dönen ring sarmalayıcı */
.care-loader-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Dönen altın ring */
.care-loader-ring {
    position: absolute;
    inset: 0;
    border: 2.5px solid rgba(201,168,76,0.15);
    border-top-color: var(--care-gold);
    border-right-color: rgba(201,168,76,0.5);
    border-radius: 50%;
    animation: spin 1.1s linear infinite;
}
/* Logo — ortada sabit, hafif nabız */
.care-loader-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.94); }
}
/* Alt yazı */
.care-loader-text {
    color: rgba(201,168,76,0.6);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeIn 0.6s ease 0.4s both;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Page Transition Overlay ─────────────────────────────── */
.care-page-transition {
    position: fixed;
    inset: 0;
    background: var(--care-navy);
    z-index: 99998;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.38s ease;
}
.care-page-transition.care-pt-out {
    opacity: 0;
}

/* ── Floating Particles Canvas ───────────────────────────── */
.care-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* ── Timeline (Hakkımızda) ───────────────────────────────── */
.care-timeline {
    position: relative;
    padding: 20px 0;
}
.care-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--care-gold), transparent);
    transform: translateX(-50%);
}
.care-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.care-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateY(30px);
}
.care-timeline-item.care-tl-visible {
    opacity: 1;
    transform: translateY(0);
}
.care-timeline-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background: var(--care-gold);
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
    align-self: flex-start;
}
.care-timeline-content {
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}
.care-timeline-year {
    color: var(--care-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.care-timeline-title {
    color: var(--care-navy);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.care-timeline-desc {
    color: var(--care-muted);
    font-size: 14px;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .care-timeline::before { left: 16px; }
    .care-timeline-item,
    .care-timeline-item:nth-child(even) { flex-direction: column; gap: 14px; padding-left: 40px; }
    .care-timeline-dot { position: absolute; left: 10px; }
}

/* ── Scroll-Reveal System ────────────────────────────────── */
.care-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    will-change: opacity, transform;
}
.care-reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.care-reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.care-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.care-reveal.care-visible,
.care-reveal-left.care-visible,
.care-reveal-right.care-visible,
.care-reveal-scale.care-visible {
    opacity: 1;
    transform: none;
}
.care-d1 { transition-delay: 0.08s !important; }
.care-d2 { transition-delay: 0.18s !important; }
.care-d3 { transition-delay: 0.28s !important; }
.care-d4 { transition-delay: 0.38s !important; }
.care-d5 { transition-delay: 0.48s !important; }
.care-d6 { transition-delay: 0.58s !important; }

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmerBtn {
    0%   { left: -100%; }
    100% { left: 140%; }
}
@keyframes pulseRing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.28); opacity: 0; }
}
@keyframes fabEntrance {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(var(--care-gold-rgb),0.3); }
    50%       { box-shadow: 0 0 22px rgba(var(--care-gold-rgb),0.6); }
}

/* ── Header ───────────────────────────────────────────────── */
#header {
    box-shadow: 0 2px 30px rgba(0,0,0,0.4) !important;
    backdrop-filter: saturate(180%) blur(2px);
}
.header-inner {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
/* Main nav links */
.nav > li > a {
    font-family: 'Inter', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.8) !important;
    position: relative;
    padding-bottom: 6px !important;
    transition: color 0.3s ease !important;
}
.nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--care-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav > li > a:hover::after,
.nav > li.active > a::after,
.nav > li.current-menu-item > a::after {
    width: 100%;
}
.nav > li > a:hover,
.nav > li.active > a,
.nav > li.current-menu-item > a {
    color: var(--care-gold) !important;
}
/* Dropdown */
.nav-dropdown {
    border-top: 2.5px solid var(--care-gold) !important;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.22) !important;
    animation: fadeInDown 0.22s ease;
    overflow: hidden;
    min-width: 220px !important;
}
.nav-dropdown li a {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
    color: var(--care-navy) !important;
    padding: 11px 22px !important;
    border-bottom: 1px solid #f0ede6 !important;
    transition: all 0.22s ease !important;
    display: block;
}
.nav-dropdown li a:hover {
    background: var(--care-navy) !important;
    color: var(--care-gold) !important;
    padding-left: 28px !important;
}
/* WhatsApp nav pill */
.nav > li:last-child > a {
    color: #25D366 !important;
    border: 1.5px solid rgba(37,211,102,0.7) !important;
    border-radius: 20px !important;
    padding: 5px 18px !important;
    margin-left: 12px;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
}
.nav > li:last-child > a::after { display: none !important; }
.nav > li:last-child > a:hover {
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35) !important;
}

/* ── Buttons ──────────────────────────────────────────────── */
.button {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition) !important;
}
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}
.button:hover::before { left: 150%; }
.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2) !important;
}
.button:active { transform: translateY(0) !important; }

/* ── WhatsApp FAB ─────────────────────────────────────────── */
.care-whatsapp-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.42);
    transition: var(--transition);
    animation: fabEntrance 0.7s ease 1.2s both;
}
.care-whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50px;
    border: 2px solid #25D366;
    opacity: 0;
    animation: pulseRing 2.5s ease 2.5s infinite;
    pointer-events: none;
}
.care-whatsapp-fab:hover {
    background: #1eb355;
    box-shadow: 0 8px 32px rgba(37,211,102,0.52);
    transform: translateY(-3px);
    color: #fff !important;
}
@media (max-width: 767px) {
    .care-whatsapp-fab span { display: none; }
    .care-whatsapp-fab {
        padding: 15px;
        border-radius: 50%;
        bottom: 22px;
        right: 22px;
    }
    .care-whatsapp-fab::before { border-radius: 50%; }
}

/* ── Section Cards (service anchor cards) ─────────────────── */
a[style*="border-radius:12px"],
a[style*="border-radius:10px"],
div[style*="border-radius:12px"],
div[style*="border-radius:10px"] {
    transition: var(--transition) !important;
}
a[style*="border-radius:12px"]:hover,
a[style*="border-radius:10px"]:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.15) !important;
}
/* Eşit kart yüksekliği için col'ları stretch yap */
.row[style*="stretch"] .col,
.row .col > a[style*="height:100%"] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Image Zoom on Hover ──────────────────────────────────── */
.ux-img,
.ux-image-box .ux-img,
.post .post-image img,
figure img {
    transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    overflow: hidden;
}
.ux-image-box:hover .ux-img,
.post:hover .post-image img {
    transform: scale(1.05) !important;
}

/* ── Image Box (team cards) ──────────────────────────────── */
.ux-image-box {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow) !important;
    transition: var(--transition) !important;
}
.ux-image-box:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* ── Overlay text ─────────────────────────────────────────── */
.ux-image-box-text {
    transition: transform 0.4s ease !important;
}
.ux-image-box:hover .ux-image-box-text {
    transform: translateY(-4px) !important;
}

/* ── Blog Posts Grid ──────────────────────────────────────── */
.post {
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
    background: #fff;
}
.post:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-lg) !important;
}
.post-title a {
    font-family: 'Playfair Display', serif !important;
    color: var(--care-navy) !important;
    transition: color 0.3s ease;
}
.post-title a:hover { color: var(--care-gold) !important; }
.post-excerpt { font-family: 'Inter', sans-serif; color: var(--care-muted); font-size: 14px; }

/* ── FAQ Details ──────────────────────────────────────────── */
details {
    border-radius: var(--radius) !important;
    transition: box-shadow 0.3s ease !important;
}
details[open] {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09) !important;
}
details summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 38px !important;
    outline: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
    content: '+';
    position: absolute;
    right: 2px;
    top: 0;
    color: var(--care-gold);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    font-family: 'Inter', sans-serif;
}
details[open] summary::after {
    transform: rotate(45deg);
}
details > p {
    animation: fadeInUp 0.3s ease;
}

/* ── Map ──────────────────────────────────────────────────── */
.ux-map-wrap {
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow) !important;
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
    background: var(--care-navy) !important;
    position: relative;
}
#footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--care-gold) 50%, transparent 100%);
    animation: goldGlow 3s ease-in-out infinite;
}
.footer-bottom {
    background: var(--care-navy-dark) !important;
    border-top: 1px solid rgba(var(--care-gold-rgb),0.15) !important;
}
#footer a { color: var(--care-gold) !important; transition: opacity 0.2s ease; }
#footer a:hover { opacity: 0.75; }
#footer p, #footer li { color: rgba(255,255,255,0.52); font-size: 13.5px; font-family: 'Inter', sans-serif; }
#footer h3, #footer h4, #footer .widget-title {
    color: #fff !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.5px;
}

/* ── Hero Sections ────────────────────────────────────────── */
.section[label*="Hero"] h1,
h1[style] {
    font-family: 'Playfair Display', serif !important;
    animation: fadeInUp 0.9s ease 0.15s both;
}
.section[label*="Hero"] p {
    animation: fadeInUp 0.9s ease 0.4s both;
}
.section[label*="Hero"] .button {
    animation: fadeInUp 0.9s ease 0.6s both;
}

/* ── Gold Accent Dividers ─────────────────────────────────── */
[style*="height:2px"][style*="#c9a84c"],
[style*="height:2px"][style*="c9a84c"] {
    box-shadow: 0 0 14px rgba(var(--care-gold-rgb),0.5) !important;
}

/* ── Section label badges ─────────────────────────────────── */
p[style*="letter-spacing:5px"],
p[style*="letter-spacing:4px"] {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

/* ── List items in content ────────────────────────────────── */
ul li span[style*="c9a84c"] {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: rgba(var(--care-gold-rgb),0.12);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Stat Numbers (homepage) ──────────────────────────────── */
.care-stat { font-family: 'Playfair Display', serif !important; }

/* ── Contact info cards ───────────────────────────────────── */
div[style*="background:#25D366"] {
    transition: var(--transition);
}
div[style*="background:#25D366"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37,211,102,0.3) !important;
}

/* ── Full-Width Slider ────────────────────────────────────── */
.ux-slider-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}
/* Slide fade geçiş yumuşatma */
.ux-slider .ux-banner {
    transition: opacity 0.8s ease !important;
}
/* Slider okları */
.slider-nav-btn {
    width: 52px !important;
    height: 52px !important;
    background: rgba(15,28,46,0.55) !important;
    border: 1.5px solid rgba(201,168,76,0.5) !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
    backdrop-filter: blur(4px);
}
.slider-nav-btn:hover {
    background: var(--care-gold) !important;
    border-color: var(--care-gold) !important;
}
.slider-nav-btn svg,
.slider-nav-btn i {
    color: #fff !important;
}
/* Slider bullet'ları */
.ux-slider-dots {
    bottom: 22px !important;
}
.ux-slider-dots .dot {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255,255,255,0.4) !important;
    border-radius: 50% !important;
    transition: var(--transition-fast) !important;
    margin: 0 5px !important;
}
.ux-slider-dots .dot.active,
.ux-slider-dots .dot:hover {
    background: var(--care-gold) !important;
    transform: scale(1.3) !important;
}
/* Slide içi text_box animasyonu (her slide açıldığında) */
.ux-slider .ux-banner.active [class*="text-box"],
.ux-slider .ux-banner.is-selected [class*="text-box"] {
    animation: fadeInUp 0.9s ease 0.2s both;
}
/* Slide text_box konumlandırma düzeltmesi */
.ux-banner .text-box-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Banner üzerindeki clamp font-size tarayıcı desteği */
@supports not (font-size: clamp(1px,1vw,1px)) {
    .ux-banner h1, .ux-banner h2 { font-size: 46px !important; }
}

/* ── Header Logo + Nav ────────────────────────────────────── */
/* Flatsome logo container = #logo (ID), images have class header-logo */
#logo img,
#logo img.header_logo,
#logo img.header-logo,
#logo img.header-logo-sticky,
#logo img.header-logo-dark {
    max-height: 68px !important;
    width: auto !important;
    max-width: 230px !important;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)) brightness(1.15);
    transition: filter .3s ease;
}
#logo { width: 230px !important; }
#logo .logo-text { display: none !important; }

/* Header — solid navy */
#header,
.header-main {
    background-color: #0f1c2e !important;
}
.stuck .header-main,
.header.show-on-scroll .header-main {
    box-shadow: 0 2px 20px rgba(0,0,0,0.35) !important;
}

/* Nav ortala */
.header-main ul.header-nav-main {
    justify-content: center !important;
}

.header-main .nav > li > a,
.header-main .nav > li > span {
    color: rgba(255,255,255,.85) !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}
.header-main .nav > li:hover > a,
.header-main .nav > li.active > a {
    color: #c9a84c !important;
}
#header .search-button svg,
#header .search-button i { color: rgba(255,255,255,.8) !important; }

/* ── Custom Footer (child theme template override) ────────── */
.care-footer {
    background: #0a1628;
    position: relative;
    font-family: var(--care-sans);
}
.care-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--care-gold), transparent);
}
.care-footer-top {
    padding: 70px 0 55px;
}
.care-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.care-footer-col { flex: 1; min-width: 180px; }
.care-footer-col--wide { flex: 1.4; min-width: 220px; }

/* Logo */
.care-footer-logo img {
    max-width: 100px;
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 18px;
    opacity: 1;
}
.care-footer-desc {
    color: rgba(255,255,255,.5);
    font-size: 13.5px;
    line-height: 1.85;
    margin-bottom: 22px;
}
.care-footer-wa,
.care-footer-wa:visited,
.care-footer-wa:hover,
.care-footer-wa:focus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    transition: opacity .2s;
}
.care-footer-wa:hover { opacity: .88; }
.care-footer-wa svg { fill: #fff !important; }

/* Başlıklar */
.care-footer-heading {
    color: var(--care-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 18px;
    font-family: var(--care-sans);
}

/* Linkler */
.care-footer-list {
    list-style: none;
    margin: 0; padding: 0;
}
.care-footer-list li { margin-bottom: 9px; }
.care-footer-list a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .22s;
}
.care-footer-list a:hover { color: var(--care-gold); }

/* İletişim */
.care-footer-contact {
    list-style: none;
    margin: 0; padding: 0;
}
.care-footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: rgba(255,255,255,.55);
    font-size: 13.5px;
    line-height: 1.7;
}
.care-footer-contact li svg { flex-shrink: 0; margin-top: 2px; }
.care-footer-contact a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .22s;
}
.care-footer-contact a:hover { color: var(--care-gold); }

/* Alt bar */
.care-footer-bottom {
    background: #071020;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 16px 0;
}
.care-footer-bottom .care-footer-inner {
    justify-content: space-between;
    align-items: center;
    padding-top: 0; padding-bottom: 0;
}
.care-footer-copy,
.care-footer-links a {
    color: rgba(255,255,255,.38);
    font-size: 12.5px;
    text-decoration: none;
}
.care-footer-links a:hover { color: var(--care-gold); }

/* Flatsome default footer gizle (child override kullanıldığında) */
#footer-widgets, #footer-bar { display: none !important; }

@media (max-width: 768px) {
    .care-footer-top { padding: 48px 0 36px; }
    .care-footer-inner { gap: 32px; }
    .care-footer-col, .care-footer-col--wide { min-width: 100%; flex: 1 1 100%; }
    .care-footer-bottom .care-footer-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── Mobil Menü ───────────────────────────────────────────── */
/* Ana panel arka planı */
#main-menu.mobile-sidebar,
.mobile-sidebar {
    background: #0f1c2e !important;
}
/* İçerik wrapper */
#main-menu .nav-sidebar,
.mobile-sidebar .nav-sidebar,
#main-menu .mfp-content,
.mobile-sidebar > * {
    background: #0f1c2e !important;
}
/* Menü linkleri */
#main-menu .nav > li > a,
.mobile-sidebar .nav > li > a {
    color: rgba(255,255,255,.85) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    background: transparent !important;
    padding: 14px 20px !important;
}
#main-menu .nav > li > a:hover,
.mobile-sidebar .nav > li > a:hover,
#main-menu .nav > li.active > a {
    color: #c9a84c !important;
    background: rgba(201,168,76,.07) !important;
}
/* Alt menü */
#main-menu .sub-menu,
.mobile-sidebar .sub-menu {
    background: rgba(0,0,0,.3) !important;
}
#main-menu .sub-menu a,
.mobile-sidebar .sub-menu a {
    color: rgba(255,255,255,.6) !important;
    padding-left: 32px !important;
}
#main-menu .sub-menu a:hover { color: #c9a84c !important; }
/* Dropdown ok */
#main-menu .nav > li .dropdown-toggle,
.mobile-sidebar .nav > li .dropdown-toggle {
    color: rgba(255,255,255,.45) !important;
    border-left: 1px solid rgba(255,255,255,.1) !important;
}
/* Arama */
#main-menu .search-field,
.mobile-sidebar .search-field {
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: #fff !important;
    border-radius: 5px !important;
}
#main-menu .search-field::placeholder { color: rgba(255,255,255,.4) !important; }
#main-menu .search-submit,
.mobile-sidebar .search-submit {
    background: #c9a84c !important;
    color: #0f1c2e !important;
    border-radius: 0 5px 5px 0 !important;
}
/* Sosyal ikonlar gizle */
#main-menu .social-icons,
.mobile-sidebar .social-icons,
#main-menu .widget_social_widget {
    display: none !important;
}
/* Hamburger butonu — beyaz outline */
.mobile-nav li.nav-icon a,
.mobile-nav li.nav-icon a.is-small,
.mobile-nav li.has-icon a,
ul.mobile-nav li.nav-icon > a,
#header .mobile-nav li.nav-icon a {
    background: transparent !important;
    background-color: transparent !important;
    border: 2px solid #ffffff !important;
    box-shadow: none !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}
.mobile-nav li.nav-icon a i,
.mobile-nav li.has-icon a i,
ul.mobile-nav li.nav-icon > a i {
    color: #ffffff !important;
}
/* Kapat (×) butonu */
#main-menu .mfp-close,
.mobile-sidebar .mfp-close {
    color: rgba(255,255,255,.7) !important;
    background: transparent !important;
}
/* Overlay */
.mfp-bg { background: rgba(0,0,0,.7) !important; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .care-whatsapp-fab { bottom: 20px; right: 20px; }
    h1 { font-size: 32px !important; line-height: 1.2 !important; }
    h2 { font-size: 26px !important; }
}
@media (max-width: 480px) {
    h1 { font-size: 26px !important; }
    h2 { font-size: 22px !important; }
    .button { font-size: 13px !important; }
}

/* ── Scroll progress bar ──────────────────────────────────── */
.care-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--care-gold), var(--care-gold-hover));
    z-index: 999998;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(var(--care-gold-rgb),0.6);
}
