/* ========================================
   SUBPAGE STYLES
   Shared styles for all inner pages
   ======================================== */

/* Hero Section */
.subpage-hero {
    padding-top: 0;
    background: white;
}

.subpage-hero-inner {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 12px;
}

.subpage-hero-video-wrap {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.subpage-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subpage-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 2.5rem;
    z-index: 10;
    text-align: center;
    color: white;
}

.subpage-hero-badge {
    display: none;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(254, 190, 16, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(254, 190, 16, 0.3);
    color: #febe10;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.subpage-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.subpage-hero-desc {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Responsive Hero */
@media (min-width: 768px) {
    .subpage-hero-inner {
        padding: 15px;
    }

    .subpage-hero-content {
        padding: 3rem 3rem 3.5rem;
    }
}

@media (min-width: 1024px) {
    .subpage-hero-content {
        padding: 3rem 4rem 4rem;
    }
}

@media (max-width: 480px) {
    .subpage-hero-video-wrap {
        height: 26vh;
        min-height: 200px;
        max-height: 300px;
        border-radius: 1.5rem;
    }
    .subpage-hero-video {
        object-position: right;
    }
    .subpage-hero-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    .subpage-hero-title {
        font-size: clamp(1.6rem, 2vw, 2.5rem);
        margin-bottom: 1rem;
    }
    .subpage-hero-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}
/* =============================================
   SAĞLIĞA ETKİLERİ — Bento Video Grid
   ============================================= */
.saglik-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
}
.saglik-bento .saglik-vid-card:nth-child(1),
.saglik-bento .saglik-vid-card:nth-child(5) {
    grid-column: span 2;
}
/* 4 kart layout: Z-pattern (geniş-dar / dar-geniş) */
.saglik-bento-4 {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 275px;
}
.saglik-bento-4 .saglik-vid-card:nth-child(1),
.saglik-bento-4 .saglik-vid-card:nth-child(4) {
    grid-column: span 2;
}
.saglik-bento-4 .saglik-vid-card:nth-child(2),
.saglik-bento-4 .saglik-vid-card:nth-child(3) {
    grid-column: span 1;
}
@media (max-width: 767px) {
    .saglik-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .saglik-bento .saglik-vid-card:nth-child(1),
    .saglik-bento .saglik-vid-card:nth-child(5) {
        grid-column: span 1;
    }
}
@media (max-width: 480px) {
    .saglik-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 225px;
    }
    .saglik-bento-4 .saglik-vid-card:nth-child(1),
    .saglik-bento-4 .saglik-vid-card:nth-child(4) {
        grid-column: span 1;
    }
    .header-logo img{
        height: 3rem;
    }
}
.saglik-vid-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.saglik-vid-card:hover {
    transform: scale(1.02);
    z-index: 2;
}
.saglik-vid-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.vid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.20) 55%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}
.vid-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vid-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 350px;
}
.saglik-vid-card h3 {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}
.vid-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.vid-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.70);
    transition: color 0.2s ease, gap 0.2s ease;
}
.saglik-vid-card:hover .vid-link {
    color: #fff;
    gap: 9px;
}

/* =============================================
   KAYNAKLAR — Kaynak Kartları
   ============================================= */
.kaynak-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px 22px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.kaynak-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.kaynak-header-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.kaynak-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255,255,255,0.8);
    padding: 7px;
    border: 1px solid rgba(255,255,255,0.9);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.kaynak-card:hover {
    background: rgba(255,255,255,0.75);
    border-color: rgba(254,190,16,0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    transform: translateY(-3px) scale(1.02);
}
.kaynak-card:hover .kaynak-logo {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.kaynak-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1.3;
}
.kaynak-abbr {
    font-weight: 800;
    font-size: 1.05rem;
    color: #39474f;
}
.kaynak-sep {
    color: #c5c9cd;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0 2px;
}
.kaynak-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: #94a3b8;
    margin: 0;
}
@media (max-width: 480px) {
    .kaynak-title { flex-direction: column; }
    .kaynak-sep { display: none; }
    .kaynak-name { margin-top: 2px; }
}
.kaynak-desc {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.2;
}
.kaynak-ref-list {
    list-style: none;
    counter-reset: ref;
    padding: 0;
    margin: 0;
}
.kaynak-ref-list li {
    counter-increment: ref;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 28px;
    position: relative;
}
.kaynak-ref-list li::before {
    content: "(" counter(ref) ")";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 0.78rem;
    color: #94a3b8;
}

/* Subpage video blocks (inline video + text) */
.subpage-video-block {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.subpage-video-block video {
    width: 100%;
    height: auto;
    display: block;
}

/* Signal/bullet lists on subpages */
.subpage-signal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subpage-signal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.subpage-signal-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #febe10;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Effect cards (other effects grid) */
.effect-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(57, 71, 79, 0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.effect-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.effect-card h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #39474f;
}

.effect-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Bottom video section */
.subpage-bottom-video {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.subpage-bottom-video video {
    width: 100%;
    height: auto;
    display: block;
}

.subpage-bottom-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.subpage-bottom-video-title {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    text-align: center;
    padding: 2rem;
}

/* =============================================
   FOOTER (shared with index — copied from index.css)
   ============================================= */
.site-footer {
    background: #43494e; /*linear-gradient(170deg, #839097 0%, #6d7a82 50%, #5a666d 100%);*/
    padding: 0;
}

.footer-top {
    text-align: center;
    padding: 72px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-mission {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding: 44px 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-links a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 0.84rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.35);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    height: 34px;
    padding: 12px;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-trust {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 0;
    text-align: center;
}
.footer-trust-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.footer-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}
.footer-trust-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 3px 3px;
    background: rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: all 0.3s ease;
}
.footer-trust-logos img:hover {
    opacity: 1;
    background: rgba(255,255,255,0.22);
    filter: grayscale(0.3) brightness(1.5) contrast(0.9);
    transform: scale(1.06);
}

.footer-bar {
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}
.footer-copy {
    color: rgba(255,255,255,0.35);
    font-size: 0.74rem;
    white-space: nowrap;
}
.footer-agency-logo {
    display: flex;
    align-items: center;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.footer-agency-logo:hover {
    opacity: 0.8;
}
.footer-agency-logo img {
    height: auto;
    display: block;
}

@media (max-width: 1023px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 48px;
    }
}
@media (max-width: 767px) {
    .footer-top {
        padding: 48px 0 32px;
    }
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0;
    }
    .footer-trust-logos {
        gap: 12px 18px;
        flex-wrap: wrap;
    }
    .footer-trust-logos img {
        height: 30px;
    }
    .footer-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .saglik-vid-card {
        border-radius: 16px;
    }
    .vid-overlay {
        padding: 16px;
        border-radius: 16px;
    }
    .vid-icon-wrap {
        width: 35px;
        height: 35px;
        border-radius: 9px;
    }
    .vid-bottom {
        gap: 2px;
    }
    .saglik-vid-card h3 {
        font-weight: 700;
        font-size: 16px;
    }
    .vid-link {
        gap: 2px;
        font-weight: 500;
        font-size: 12px;
    }
}

.kaynak-card.-zamaninda-box {
    background: linear-gradient(135deg, #ffffff 0%, #fffdf7 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.kaynak-card.-zamaninda-box .kaynak-header {
    gap: 12px;
}
.kaynak-card.-zamaninda-box .kaynak-header-text {padding: 24px 22px;}
.kaynak-card.-zamaninda-box .kaynak-card:hover {
    background: rgba(255,255,255,0.75);
    border-color: rgba(254,190,16,0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    transform: translateY(-3px) scale(1.02);
}
.kaynak-card.-zamaninda-box .kaynak-card:hover .kaynak-logo {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
@media (max-width: 767px) {
    .kaynak-card.-zamaninda-box {
    display: block;
    }
    .kaynak-card.-zamaninda-box .kaynak-header {
        flex-direction: column;
    }
    .kaynak-card.-zamaninda-box .kaynak-header-text {
        gap: 3px;
    }
    .kaynak-card.-zamaninda-box .kaynak-card:hover {
        background: rgba(255,255,255,0.75);
        border-color: rgba(254,190,16,0.25);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
        transform: translateY(-3px) scale(1.02);
    }
    .kaynak-card.-zamaninda-box .kaynak-card:hover .kaynak-logo {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
}

/* =============================================
   BTN-SITE SYSTEM (shared with index)
   ============================================= */
.btn-site {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.btn-site-dark {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-site-dark:hover {
    background: rgba(255,255,255,0.25);
}
.btn-site-light {
    background: #fff;
    color: #39474f;
    border: 1px solid rgba(57,71,79,0.12);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-site-light:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}
.btn-site-primary {
    background: #febe101a;
    color: #fdbe11;
    border: 1px solid #fdbe1130;
    padding: 12px 24px;
}
.btn-site-primary:hover {
    background: #fdbe11;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(254,190,16,0.3);
}
.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}
.btn-site-light .btn-arrow {
    background: rgba(57,71,79,0.08);
}
.btn-site-primary .btn-arrow {
    background: rgb(253 190 17 / 19%);
    margin-right: -12px;
}
.btn-site:hover .btn-arrow {
    transform: translateX(3px);
}

/* =============================================
   HEADER SCROLL STATE (for subpages)
   ============================================= */
#header.scrolled #navBar {
    background: rgba(255,255,255,0.92);
    border-color: rgba(0,0,0,0.08);
}
#header.scrolled .nav-link {
    color: #39474f;
}
#header.scrolled .nav-link:hover {
    background: rgba(57,71,79,0.08);
    color: #39474f;
}
#header.scrolled #headerLogoImg {
    content: url('/theme/images/logo.svg');
}
#header.scrolled #teshisBtn {
    background: rgba(57,71,79,0.06);
    border: 1px solid rgba(57,71,79,0.1);
}
#header.scrolled #teshisText {
    color: #39474f;
}
#header.scrolled #mobileMenuBtn {
    background: rgba(57,71,79,0.06);
    border-color: rgba(57,71,79,0.1);
    color: #39474f;
}

/* Shimmer effect for CTA button */
.shimmer-wrap {
    overflow: hidden;
}
.shimmer-wrap::before {
    content: '';
    position: absolute;
    inset: -150%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 40%, rgba(255,255,255,0.6) 48%, #febe10 52%, transparent 60%, transparent 100%);
    animation: shimmerRotate 3s linear infinite;
}
@keyframes shimmerRotate {
    to { transform: rotate(360deg); }
}

/* Mobile submenu */
.mobile-submenu {
    display: none;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    padding-bottom: 0;
}
.mobile-submenu.is-open {
    display: flex;
    max-height: 400px;
    opacity: 1;
    padding-bottom: 1rem;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    justify-items: center;
}
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 19%);
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Scroll to top */
#scrollTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   FAB (Floating Action Button)
   ============================================= */
#fab-wrapper {
    transition: opacity 0.4s ease;
}
#fab-wrapper.fab-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    border: none;
    background: #febe10;
    color: #39474f;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    z-index: 2;
    margin-left: auto;
}
.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

.fab-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid rgba(254,190,16,0.35);
    animation: fab-pulse 2.5s ease-out infinite;
}
@keyframes fab-pulse {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.fab-icon {
    transition: opacity 0.25s ease, transform 0.25s ease;
    position: absolute;
}
.fab-icon--hidden {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

#fab-wrapper.fab-open .fab-btn::before {
    animation: none;
    opacity: 0;
}
#fab-wrapper.fab-open #fab-icon-question {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}
#fab-wrapper.fab-open #fab-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.fab-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 288px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px 20px 16px;
    opacity: 0;
    transform: scale(0.5) translateY(10px);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
#fab-wrapper.fab-open .fab-panel {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.fab-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}
.fab-close:hover {
    color: #39474f;
    background: #f1f5f9;
}

.fab-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #39474f;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.fab-option:hover {
    background: #fffbeb;
}
.fab-option + .fab-option {
    margin-top: 4px;
}

.fab-option-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fef6d8;
    color: #b3830b;
}

.fab-option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.fab-option-text strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: #39474f;
    line-height: 1.3;
}
.fab-option-text small {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.3;
    margin-top: 1px;
}

.fab-option-arrow {
    flex-shrink: 0;
    color: #cbd5e1;
    transition: color 0.2s ease, transform 0.2s ease;
}
.fab-option:hover .fab-option-arrow {
    color: #febe10;
    transform: translateX(3px);
}

#fab-wrapper.fab-open .fab-option {
    animation: fab-option-in 0.3s ease both;
}
#fab-wrapper.fab-open .fab-option:nth-child(2) { animation-delay: 0.05s; }
#fab-wrapper.fab-open .fab-option:nth-child(3) { animation-delay: 0.1s; }
#fab-wrapper.fab-open .fab-option:nth-child(4) { animation-delay: 0.15s; }

@keyframes fab-option-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .fab-btn {
        width: 48px;
        height: 48px;
    }
    .fab-btn .fab-icon {
        width: 22px;
        height: 22px;
    }
    .fab-panel {
        width: calc(100vw - 48px);
        right: 0;
    }
}

/* =============================================
   SSS — FAQ Accordion (Alt Sayfalar)
   ============================================= */
.faq-item {
    background: transparent;
}
.faq-item.active {
    background: #ffffff;
    border-color: rgba(254,190,16,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
}
.faq-trigger {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}
.faq-trigger:hover .faq-icon {
    background: rgba(254,190,16,0.08);
    border-color: #febe10;
}
.faq-item.active .faq-icon {
    background: #febe10;
    border-color: #febe10;
}
.faq-item.active .faq-icon svg {
    color: #fff;
    transform: rotate(45deg);
}
.faq-content {
    will-change: max-height;
}

/* Tab buttons */
.faq-tab-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1.5px solid rgba(254,190,16,0.2);
    background: transparent;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}
.faq-tab-btn:hover {
    border-color: #febe10;
    color: #febe10;
    background: rgba(254,190,16,0.04);
}
.faq-tab-btn.active {
    background: #febe10;
    border-color: #febe10;
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
/* Mobilde yatay scroll strip + snap */
@media (max-width: 480px) {
    .faq-tabs {
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .faq-tabs::-webkit-scrollbar { display: none; }
    .faq-tab-btn { flex-shrink: 0; scroll-snap-align: start; }
}

/* Tab panels */
.faq-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.faq-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
