/* ============================================================
   Partner Temizlik — style.css
   Açık & Temiz Tema | Mint + Mavi + Beyaz
   ============================================================ */

/* ---- 1. CSS VARIABLES ---- */
:root {
    --primary:       #2BBFB0;
    --primary-dark:  #1E9E91;
    --primary-light: #E8F9F7;
    --secondary:     #1A7AB5;
    --secondary-dark:#145F8E;
    --accent:        #4FAEDB;
    --text-dark:     #1C2B3A;
    --text-body:     #4A5568;
    --text-light:    #718096;
    --bg-white:      #FFFFFF;
    --bg-soft:       #F7FBFC;
    --bg-mint:       #EEF9F8;
    --border:        #E2EEF1;
    --shadow-sm:     0 2px 8px rgba(43,191,176,.10);
    --shadow-md:     0 8px 30px rgba(43,191,176,.15);
    --shadow-lg:     0 20px 60px rgba(43,191,176,.20);
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     32px;
    --transition:    all .35s cubic-bezier(.4,0,.2,1);
    --font:          'Plus Jakarta Sans', sans-serif;
    --header-h:      74px;
}

/* ---- 2. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: #1a7ab5 #f0f7ff;
    overflow-x: hidden;
}

/* Custom Scrollbar (WebKit & Chromium) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f7ff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2563eb 0%, #1a7ab5 100%);
    border-radius: 10px;
    border: 2px solid #f0f7ff;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1d4ed8 0%, #145f8e 100%);
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.highlight {
    color: var(--primary);
    position: relative;
}

/* ---- 4. UTILITIES ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }

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

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title { margin-bottom: 16px; }
.section-desc  { color: var(--text-light); font-size: 1.05rem; }

/* ---- 5. BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(43,191,176,.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43,191,176,.5);
    color: #fff;
}

.btn-outline-white {
    border-color: rgba(255,255,255,.7);
    color: #fff;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.2);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-lg  { padding: 15px 34px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- 6. IMG LABEL (placeholder indicator) ---- */
.img-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .7rem;
    font-family: monospace;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    z-index: 3;
    pointer-events: none;
    opacity: .85;
}

/* ---- 7. HEADER ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--header-h);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(43,191,176,.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); }
.logo-sub  { font-size: .72rem; font-weight: 500; color: var(--text-light); letter-spacing: .05em; }

.header-logo-img {
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.footer-logo-img {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}

.header.scrolled .logo-main { color: var(--text-dark); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav-link {
    padding: 8px 14px;
    font-weight: 600;
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    border-radius: 8px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { left: 14%; right: 14%; }

.header.scrolled .nav-link { color: var(--text-body); }
.header.scrolled .nav-link:hover { color: var(--primary); }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.mobile-nav.open {
    max-height: 600px;
    padding: 16px 24px 24px;
}
.mobile-nav-link {
    padding: 12px 16px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-dark);
    border-radius: 10px;
}
.mobile-nav-link:hover { background: var(--bg-mint); color: var(--primary); }

/* ---- 8. HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    max-width: 100%;
}

.hero-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Fallback gradient per slide */
.slide-1 { background-color: #0d5a8a; background-image: linear-gradient(135deg, rgba(13,90,138,0.6) 0%, rgba(43,191,176,0.4) 100%), url('../images/hero/slide-1.png'); }
.slide-2 { background-color: #1E9E91; background-image: linear-gradient(135deg, rgba(30,158,145,0.6) 0%, rgba(26,122,181,0.4) 100%), url('../images/hero/slide-2.png'); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,40,60,.75) 0%, rgba(12,40,60,.35) 100%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--header-h) + 40px) 60px 80px;
    max-width: 800px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(43,191,176,.25);
    border: 1px solid rgba(43,191,176,.5);
    color: #a8edea;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.hero-slide.active .hero-badge {
    animation: fadeInUp .7s ease .1s both;
}

.hero-title {
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-slide.active .hero-title {
    animation: fadeInUp .7s ease .25s both;
}

.hero-desc {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-slide.active .hero-desc {
    animation: fadeInUp .7s ease .4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-slide.active .hero-actions {
    animation: fadeInUp .7s ease .55s both;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    z-index: 10;
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    transition: var(--transition);
    cursor: pointer;
}
.hero-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.6);
    font-size: .72rem;
    letter-spacing: .08em;
    animation: bounce 2s infinite;
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
}

/* ---- 9. FEATURES BAR ---- */
.features-bar {
    background: var(--bg-white);
    padding: 0;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 28px;
    color: rgba(255,255,255,.9);
    border-right: 1px solid rgba(255,255,255,.15);
    transition: var(--transition);
    position: relative;
}
.feature-item:last-child { border-right: none; }
.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}
.feature-item:hover::before { background: rgba(255,255,255,.06); }

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.feature-icon-wrap svg { width: 22px; height: 22px; color: #fff; }

.feature-item h3 { font-size: .9rem; color: #fff; margin-bottom: 4px; }
.feature-item p  { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 1.4; }

/* ---- 10. SERVICES ---- */
.services { background: var(--bg-soft); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-img {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #ddf4f2 0%, #b8e0e8 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,122,181,.1) 100%);
}

.service-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-icon-wrap {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.service-body h3 { font-size: 1rem; margin-bottom: 8px; }
.service-body p  { font-size: .85rem; color: var(--text-light); margin-bottom: 16px; flex: 1; line-height: 1.5; }

/* ---- 11. STATS ---- */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #0d3a5c 100%);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 20px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}
.stat-number {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-item p {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* ---- 12. ABOUT ---- */
.about { background: var(--bg-white); }

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

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-xl);
}

.about-content { padding-right: 20px; }
.about-content .section-badge { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text { color: var(--text-body); margin-bottom: 14px; font-size: .97rem; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.af-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.af-icon svg { width: 14px; height: 14px; color: var(--primary-dark); }

.about-feature strong { font-size: .95rem; color: var(--text-dark); display: block; margin-bottom: 2px; }
.about-feature p      { font-size: .85rem; color: var(--text-light); margin: 0; }

/* ---- 13. TRUST BADGES ---- */
.trust-badges-section {
    background-color: #fbfdf9;
    padding: 60px 0;
    border-top: 1px solid rgba(12, 100, 123, 0.08);
    border-bottom: 1px solid rgba(12, 100, 123, 0.08);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.trust-badge-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    stroke-width: 1.8;
    transition: transform 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon {
    transform: translateY(-4px);
}

.trust-badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .trust-badges-section {
        padding: 40px 0;
    }
}
.team-info h3 { font-size: 1rem; margin-bottom: 4px; }
.team-info p  { font-size: .83rem; color: var(--primary); font-weight: 600; }

/* ---- 14. TESTIMONIALS ---- */
.testimonials { background: var(--bg-mint); }

.testimonial-slider-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider { position: relative; min-height: 260px; }

.testimonial-card {
    position: absolute;
    inset: 0;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 44px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(30px);
    transition: all .5s ease;
    pointer-events: none;
    border: 1px solid var(--border);
}
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    line-height: .7;
    color: var(--primary-light);
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { font-size: .95rem; color: var(--text-dark); display: block; }
.testimonial-author span   { font-size: .8rem; color: var(--text-light); }

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.t-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.t-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.1); }

.t-dots { display: flex; gap: 8px; }
.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
}
.t-dot.active { background: var(--primary); width: 24px; border-radius: 5px; }

/* ---- 15. GALLERY ---- */
.gallery { background: var(--bg-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 12px;
}

.gallery-item { overflow: hidden; border-radius: var(--radius-md); }
.gallery-item.g-tall  { grid-row: span 2; }
.gallery-item.g-wide  { grid-column: span 2; }

.gallery-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8edf0 0%, #a8d4e4 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform .5s ease;
    cursor: pointer;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43,191,176,.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(43,191,176,.5); }

.gallery-overlay span {
    font-size: 2.5rem;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
    font-weight: 300;
}
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: scale(1); }

/* ---- 16. BLOG ---- */
.blog { background: var(--bg-soft); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 220px;
    background: linear-gradient(135deg, #ddf4f2 0%, #b8dde8 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,122,181,.12) 100%);
}

.blog-category {
    display: inline-block;
    background: var(--bg-mint);
    color: var(--primary-dark);
    font-size: .76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
    letter-spacing: .04em;
    border: 1px solid rgba(43, 191, 176, 0.3);
    text-transform: uppercase;
}

.blog-body { padding: 22px; }

.blog-meta { font-size: .78rem; color: var(--text-light); margin-bottom: 10px; }
.blog-meta time { font-weight: 600; }

.blog-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-dark);
}
.blog-body p { font-size: .85rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }

.blog-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-link span { transition: transform .25s; }
.blog-link:hover span { transform: translateX(4px); }
.blog-link:hover { color: var(--primary-dark); }

/* ---- 17. FAQ ---- */
.faq {
    background: #f8fafc;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-inner { max-width: 780px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

details.faq-item,
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: var(--transition);
    display: block;
}
details.faq-item:hover,
.faq-item:hover {
    border-color: rgba(43,191,176,0.5);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

summary.faq-question,
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: .97rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: var(--transition);
    background: transparent;
    border: none;
    box-sizing: border-box;
}
summary.faq-question::-webkit-details-marker {
    display: none;
}
summary.faq-question:hover,
.faq-question:hover { background: var(--bg-mint); color: var(--primary); }

details.faq-item[open] > summary.faq-question,
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary-dark); }

.faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}
.faq-arrow::before, .faq-arrow::after {
    content: '';
    position: absolute;
    background: var(--text-body);
    border-radius: 2px;
    transition: var(--transition);
}
.faq-arrow::before { width: 10px; height: 2px; }
.faq-arrow::after  { width: 2px; height: 10px; }

details.faq-item[open] .faq-arrow,
.faq-item.open .faq-arrow { background: var(--primary); transform: rotate(45deg); }
details.faq-item[open] .faq-arrow::before,
details.faq-item[open] .faq-arrow::after,
.faq-item.open .faq-arrow::before,
.faq-item.open .faq-arrow::after { background: #fff; }

.faq-answer {
    padding: 6px 24px 22px;
    display: block;
    animation: faqFadeIn 0.3s ease;
}
.faq-answer p {
    font-size: .94rem;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQ More CTA on Homepage */
.faq-more-cta {
    margin-top: 36px;
}
.faq-more-card {
    background: linear-gradient(135deg, rgba(43,191,176,0.08), rgba(26,115,232,0.08));
    border: 1.5px dashed rgba(43,191,176,0.35);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transition: var(--transition);
}
.faq-more-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(43,191,176,0.12);
    transform: translateY(-2px);
}
.faq-more-text {
    flex: 1 1 280px;
}
.faq-more-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.faq-more-text p {
    font-size: .92rem;
    color: var(--text-body);
    margin: 0;
}
.faq-more-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: normal;
    text-align: center;
    max-width: 100%;
}
@media (max-width: 768px) {
    .faq-more-card {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .faq-more-card .btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 0.92rem;
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    .faq-more-card {
        padding: 20px 16px;
    }
    .faq-more-card .btn {
        font-size: 0.88rem;
        padding: 12px 14px;
        gap: 8px;
    }
}

/* ============================================================
   DEDICATED FAQ PAGE (sss.html) STYLES
   ============================================================ */
.page-banner {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(43,191,176,0.18), transparent 70%);
}
.page-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    background: rgba(255,255,255,0.08);
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.breadcrumb a {
    color: #fff;
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--primary);
}
.page-banner-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}
.page-banner-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Search Box */
.faq-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    color: var(--text-dark);
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.faq-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 12px 35px rgba(43,191,176,0.3);
}
.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: var(--text-light);
    pointer-events: none;
}

/* Category Filter Tabs */
.faq-filter-container {
    margin: 40px 0 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.faq-filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    color: var(--text-body);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.faq-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.faq-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(43,191,176,0.35);
}
.faq-filter-btn .count {
    background: rgba(0,0,0,0.08);
    font-size: .75rem;
    padding: 2px 7px;
    border-radius: 20px;
}
.faq-filter-btn.active .count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Category Section Heading */
.faq-category-group {
    margin-bottom: 40px;
}
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.faq-category-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}
.faq-category-header .cat-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: .8rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Question Number Badge */
.faq-q-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

/* No results state */
.faq-no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.faq-no-results.show {
    display: block;
}
.faq-no-results svg {
    width: 56px;
    height: 56px;
    color: var(--text-light);
    margin-bottom: 16px;
}
.faq-no-results h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* FAQ Controls (Expand all / Collapse all) */
.faq-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.faq-counter-text {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-light);
}
.faq-toggle-all-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}
.faq-toggle-all-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ---- 18. CONTACT ---- */
.contact { background: var(--bg-soft); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; color: var(--primary); }

.contact-info-item strong { display: block; font-size: .85rem; color: var(--text-light); margin-bottom: 2px; font-weight: 600; }
.contact-info-item a,
.contact-info-item span { font-size: .95rem; color: var(--text-dark); font-weight: 500; }
.contact-info-item a:hover { color: var(--primary); }

.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }

.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--text-dark); }
.required { color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--text-dark);
    background: var(--bg-soft);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(43,191,176,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--primary); flex-shrink: 0; }

/* ---- 19. FOOTER ---- */
.footer { background: var(--text-dark); color: rgba(255,255,255,.7); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.footer-brand p {
    margin: 18px 0 20px;
    font-size: .88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: .9rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: .03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
}
.footer-contact-list li svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.footer-contact-list li a:hover { color: var(--primary); }

.footer-social {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
}
.footer-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: .83rem; }
.footer-bottom p a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.footer-bottom p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
    font-size: .83rem;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ---- 20. FLOATING ELEMENTS ---- */
/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    z-index: 900;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.6); }

.wa-label {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: var(--text-dark);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: var(--font);
    letter-spacing: .02em;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    animation: waLabelBounce 2.5s ease-in-out infinite;
}
.wa-label::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 18px;
    border: 6px solid transparent;
    border-top-color: var(--text-dark);
}

@keyframes waLabelBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,.4);
    animation: pulse 2s ease-out infinite;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 900;
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- 21. ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: .7; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Scroll Animate */
[data-animate] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease;
}
body.js-animate [data-animate] {
    opacity: 0;
    transform: translateY(28px);
}
body.js-animate [data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
[data-animate]:nth-child(2) { transition-delay: .1s; }
[data-animate]:nth-child(3) { transition-delay: .2s; }
[data-animate]:nth-child(4) { transition-delay: .3s; }

/* ---- 22. RESPONSIVE ---- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    :root { --header-h: 64px; }

    .nav, .header-cta { display: none; }
    .hamburger { display: flex; }

    /* mobile-nav sadece display:flex ile göster, aç/kapat max-height ile kontrol edilir */
    .mobile-nav { display: flex; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .team-grid      { grid-template-columns: repeat(2, 1fr); }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img  { height: 320px; }
    .about-badge-card { right: 0; bottom: -16px; }
    .about-content { padding-right: 0; }

    .contact-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 160px);
    }
    .gallery-item.g-wide { grid-column: span 1; }

    .hero-content { padding: calc(var(--header-h) + 30px) 36px 60px; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    .features-grid { grid-template-columns: 1fr; border-radius: 0; }
    .feature-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .feature-item:last-child { border-bottom: none; }

    .services-grid  { grid-template-columns: 1fr; }
    .team-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .blog-grid      { grid-template-columns: 1fr; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-grid    { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 20px; }

    .hero-content { padding: calc(var(--header-h) + 20px) 24px 60px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .hero-arrow { display: none; }

    .testimonial-card { padding: 28px 24px; }

    .footer-bottom .container { flex-direction: column; text-align: center; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(6, 130px);
    }
    .gallery-item.g-tall { grid-row: span 1; }

    .about-grid { gap: 32px; }
}

/* ===== TRUST BADGES SECTION (3D REALISTIC BLUE) ===== */
.trust-badges-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.12);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.trust-badges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-badge-item {
    display: flex;
    justify-content: center;
}

.trust-badge-card {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid rgba(191, 219, 254, 0.6);
    border-radius: 18px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 10px 28px -6px rgba(30, 64, 175, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.trust-badge-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 18px 36px -8px rgba(37, 99, 235, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.trust-badge-icon-wrapper {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-badge-card:hover .trust-badge-icon-wrapper {
    transform: scale(1.08);
}

.trust-badge-icon {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(30, 64, 175, 0.12));
}

.trust-badge-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #1e3a8a;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.35;
    font-family: var(--font-primary, inherit);
}

@media (max-width: 860px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 20px;
    }
    .trust-badges-section {
        padding: 42px 0;
    }
    .trust-badge-card {
        padding: 24px 20px;
    }
}

/* ===== BLOG PAGE & DETAIL STYLES ===== */
.blog-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* 2-column spacious grid for the blog listing page when sidebar is present */
.blog-page-layout .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-page-layout .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.blog-page-layout .blog-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-shrink: 0;
}

.blog-page-layout .blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-page-layout .blog-body p {
    flex-grow: 1;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-body);
}

.blog-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 10px 0 12px;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.blog-author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
}

.author-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.blog-widget {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.widget-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
}

.widget-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 191, 176, 0.15);
}

.widget-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    transition: var(--transition);
}

.widget-categories a:hover {
    background: var(--bg-mint);
    color: var(--primary-dark);
}

.widget-categories span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-cta-widget {
    background: linear-gradient(135deg, #0c647b 0%, #1a73e8 100%);
    color: #fff;
    text-align: center;
    border: none;
}

.blog-cta-widget .blog-cta-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.blog-cta-widget h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.blog-cta-widget p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.blog-cta-widget .btn-primary {
    background: #fff;
    color: #0c647b;
}

.blog-cta-widget .btn-primary:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
}

.widget-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-mint);
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.widget-phone-link:hover {
    background: var(--primary);
    color: #fff;
}

/* Recent Posts in Sidebar */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
}

.recent-post-item:hover {
    background: #f8fafc;
    border-color: var(--border);
}

.recent-post-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.recent-post-item h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.recent-post-item time {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Blog Detail Hero */
.blog-detail-hero {
    background: linear-gradient(135deg, #093744 0%, #0d5d6c 60%, #134e5e 100%);
    color: #fff;
    padding: calc(var(--header-h) + 40px) 0 48px;
}

.blog-detail-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.blog-detail-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.blog-hero-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(43, 191, 176, 0.25);
    border: 1px solid rgba(43, 191, 176, 0.5);
    color: #5eead4;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    max-width: 900px;
}

.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Blog Detail Main */
.blog-detail-main {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.blog-detail-cover {
    width: 100%;
    max-height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-detail-cover img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.blog-content-body {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-content-body .lead {
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 4px solid var(--primary);
    background: var(--bg-mint);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-content-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 14px;
}

.blog-content-body p {
    margin-bottom: 18px;
}

.blog-content-body ul {
    margin: 16px 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-content-body li {
    line-height: 1.7;
}

.blog-post-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    margin-top: 36px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tags .tag {
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.share-wa {
    background: #25d366;
    color: #fff;
}

.share-wa:hover {
    background: #1ebc59;
    transform: translateY(-2px);
}

.blog-author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 32px;
}

.author-avatar-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.55;
}

.blog-article-cta {
    background: linear-gradient(135deg, rgba(43, 191, 176, 0.12), rgba(26, 115, 232, 0.12));
    border: 1.5px solid rgba(43, 191, 176, 0.35);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.blog-article-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.blog-article-cta p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}

@media (max-width: 900px) {
    .blog-page-layout,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
    .blog-detail-main {
        padding: 24px;
    }
    .blog-article-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 680px) {
    .blog-page-layout .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-page-layout .blog-img {
        height: 210px;
    }
}




/* ============================================================
   RANDEVU SECTION
   ============================================================ */
.randevu-section {
    position: relative;
    background: linear-gradient(135deg, #0c2840 0%, #0d3b6e 50%, #0c2840 100%);
    overflow: hidden;
}

.randevu-bg-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(43,191,176,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 30%, rgba(26,122,181,.15) 0%, transparent 60%);
    pointer-events: none;
}

.randevu-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* --- Sol bilgi --- */
.randevu-info .section-badge {
    background: rgba(43,191,176,.15);
    color: var(--primary);
    border: 1px solid rgba(43,191,176,.3);
}

.randevu-info .section-title {
    color: #fff;
    margin-top: 12px;
    margin-bottom: 16px;
}

.randevu-desc {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.randevu-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.randevu-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.rf-icon {
    width: 32px;
    height: 32px;
    background: rgba(43,191,176,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.randevu-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.randevu-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    padding: 12px 18px;
    border-radius: 12px;
    transition: var(--transition);
}

.randevu-phone-link:hover {
    background: rgba(43,191,176,.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
}

/* --- Sağ form --- */
.randevu-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

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

.rf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.rf-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rf-group input,
.rf-group select,
.rf-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.93rem;
    color: var(--text-dark);
    background: #f8fafc;
    transition: border-color .25s, box-shadow .25s, background .25s;
    outline: none;
}

.rf-group input:focus,
.rf-group select:focus,
.rf-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(43,191,176,.15);
}

.rf-group input.error,
.rf-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}

.rf-group textarea {
    resize: vertical;
    min-height: 80px;
}

.rf-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center;
    animation: rfFadeIn 0.3s ease;
}

.rf-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.rf-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}

@keyframes rfFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.randevu-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 15px 24px;
    margin-top: 4px;
    border-radius: 12px;
}

.randevu-disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 960px) {
    .randevu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .randevu-form-wrap {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .randevu-form .form-row-2 {
        grid-template-columns: 1fr;
    }
}
