/* Diyetisyen - Modern Minimal Theme */
*, *::before, *::after { box-sizing: border-box; }
html {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #2d3436;
    background: #faf9f7;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}
main {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
}
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(45,106,79,0.08);
    z-index: 1030;
}
.site-header .navbar { padding: 0.75rem 0; }
.brand-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.25rem;
}
.brand-text { font-weight: 600; color: var(--dark); font-size: 1.1rem; }
.nav-link {
    font-weight: 500; color: #495057 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(45,106,79,0.08); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #40916c);
    border: none;
    box-shadow: 0 4px 15px rgba(45,106,79,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,106,79,0.4);
    background: linear-gradient(135deg, #1b4332, var(--primary));
}

/* Hero - tam genişlik yeşil / görsel kaplama */
.hero-section {
    position: relative;
    min-height: 88vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 45%, #40916c 100%);
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    min-height: 88vh;
    width: 100%;
}
.hero-slide {
    min-height: 88vh;
    width: 100%;
    background-color: #2d6a4f;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-slide--no-image {
    background-image: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #52b788 100%) !important;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(45,106,79,0.75) 50%, rgba(64,145,108,0.55) 100%);
    z-index: 1;
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 4rem 0;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-content p { font-size: 1.15rem; opacity: 0.95; max-width: 560px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-btns .btn { padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 500; }
.btn-whatsapp { background: #25d366; color: #fff; border: none; }
.btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.btn-outline-light:hover { background: #fff; color: var(--primary); }

/* Stats */
.stats-band {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding: 0 0.75rem;
}
.stats-section {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}
.hakkimizda-stats-wrap .stats-section { margin-top: 0; }
.stat-item { text-align: center; padding: 0.75rem 0.35rem; min-width: 0; }
.stat-number {
    font-size: clamp(1.35rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    word-break: break-word;
}
.stat-label {
    color: #6c757d;
    font-size: clamp(0.62rem, 2.6vw, 0.9rem);
    margin-top: 0.45rem;
    line-height: 1.25;
    padding: 0 0.15rem;
    hyphens: auto;
}

/* Sections */
.section { padding: 5rem 0; }
.section-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.section-subtitle { color: #6c757d; max-width: 600px; margin-bottom: 3rem; }

/* Cards */
.glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(45,106,79,0.1);
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(45,106,79,0.1);
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45,106,79,0.15);
    border-color: var(--secondary);
}
.service-card .icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(45,106,79,0.1), rgba(149,213,178,0.3));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.service-card h4 { font-weight: 600; color: var(--dark); }

/* Before/After */
.ba-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.ba-slider { position: relative; height: 280px; overflow: hidden; }
.ba-slider img { width: 100%; height: 100%; object-fit: cover; }
.ba-info {
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}
.ba-info h6 { width: 100%; margin-bottom: 0.25rem; }
.ba-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(45,106,79,0.08);
}
.stars { color: #f4a261; }
.testimonial-card .quote { font-style: italic; color: #495057; }

/* Blog */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.blog-card .card-img-top { height: 200px; object-fit: cover; background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.blog-card .card-body { padding: 1.5rem; }

/* About */
.about-img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(45,106,79,0.2);
    max-width: 100%;
}
.about-img-placeholder {
    min-height: 380px;
    border-radius: 24px;
}
.about-img-placeholder__icon {
    font-size: clamp(3.5rem, 18vw, 8rem);
}
.gallery-thumb-img {
    height: 200px;
    object-fit: cover;
    display: block;
}
.about-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.about-list li i { color: var(--primary); margin-right: 0.5rem; }

/* Contact */
.contact-card { padding: 2rem; }
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    max-width: 100%;
}
.map-wrap--responsive {
    height: clamp(220px, 45vw, 350px);
    min-height: 220px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-preview-list li {
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.5;
}
.contact-preview-list .btn { width: 100%; max-width: 320px; }

/* AI Assistant */
.ai-assistant-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
}
.ai-assistant-modal.active { display: flex; }
.ai-assistant-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}
.ai-assistant-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.ai-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary), #40916c);
    border-radius: 20px 20px 0 0;
    color: #fff;
}
.ai-avatar {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.ai-questions { padding: 1rem; overflow-y: auto; max-height: 50vh; }
.ai-q-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(45,106,79,0.15);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.ai-q-btn:hover {
    border-color: var(--primary);
    background: rgba(45,106,79,0.05);
    box-shadow: 0 0 20px rgba(45,106,79,0.15);
    transform: translateX(4px);
}
.ai-chat { flex: 1; display: flex; flex-direction: column; min-height: 300px; }
.ai-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 45vh;
}
.ai-msg {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.ai-msg.user { flex-direction: row-reverse; }
.ai-msg .bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
}
.ai-msg.bot .bubble { background: #f1f3f5; border-bottom-left-radius: 4px; }
.ai-msg.user .bubble { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }
.ai-typing { display: flex; gap: 4px; padding: 0.5rem; }
.ai-typing span {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
.ai-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25d366;
    color: #fff !important;
    border-radius: 50px;
    font-size: 0.85rem;
}
.ai-input-area { padding: 1rem; border-top: 1px solid #eee; }

/* FAB */
.fab-menu {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1040;
}
.fab-toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #40916c);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(45,106,79,0.4);
    font-size: 1.5rem;
    transition: transform 0.3s;
    z-index: 2;
    position: relative;
}
.fab-menu.open .fab-toggle { transform: rotate(45deg); }
.fab-items {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}
.fab-menu.open .fab-items { opacity: 1; visibility: visible; transform: none; }
.fab-item {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--accent); }
.fab-ai { background: linear-gradient(135deg, #667eea, #764ba2); }

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    margin-top: 4rem;
}
.footer-top { padding: 4rem 0 2rem; }
.site-footer h5, .site-footer h6 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--secondary); }
.footer-contact li { margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-credit a {
    color: var(--secondary);
    font-weight: 500;
}
.footer-credit a:hover { color: #fff; }

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary), #40916c);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}
.page-hero h1 { font-weight: 700; }

/* Forms */
.form-control, .form-select {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(45,106,79,0.15);
}

/* Calculator */
.calc-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* FAQ accordion */
.faq-section { background: linear-gradient(180deg, #f8faf9 0%, #fff 100%); }
.faq-accordion .accordion-item {
    border: none;
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45,106,79,0.08);
}
.faq-accordion .accordion-button {
    font-weight: 500;
    border-radius: 14px !important;
    background: #fff;
    color: var(--dark);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(45,106,79,0.12), rgba(149,213,178,0.2));
    color: var(--primary);
    box-shadow: none;
}
.faq-accordion .accordion-button::after { transition: transform 0.35s ease; }
.faq-accordion .accordion-collapse { transition: height 0.35s ease; }

/* Contact info */
.contact-info-card {
    background: linear-gradient(145deg, #fff, #f4faf6);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(45,106,79,0.1);
}
.contact-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ci-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), #40916c);
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-list small { display: block; color: #6c757d; font-size: 0.75rem; }
.contact-info-list li > div {
    flex: 1;
    min-width: 0;
}
.contact-info-list a, .contact-info-list span {
    color: var(--dark);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.contact-social .social-link-btn,
.site-footer .social-link-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff !important;
    transition: all 0.3s;
}
.contact-social .social-link-btn {
    background: var(--primary);
    border-color: transparent;
}
.contact-social .social-link-btn:hover,
.site-footer .social-link-btn:hover {
    background: var(--secondary);
    color: var(--dark) !important;
    transform: translateY(-3px);
}

/* Service icon picker (admin uses similar on front) */
.icon-picker-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.icon-pick {
    width: 42px; height: 42px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    background: #fff;
}
.icon-pick:hover, .icon-pick.active { border-color: var(--primary); background: rgba(45,106,79,0.1); color: var(--primary); }

/* Footer light text on dark */
.site-footer .footer-tagline,
.site-footer .footer-monitor { color: rgba(255,255,255,0.9) !important; }

/* Service cards – sweeter */
.service-card-v2 {
    background: linear-gradient(160deg, #fff 0%, #f4faf6 100%);
    border-radius: 24px;
    padding: 1.75rem;
    height: 100%;
    border: 1px solid rgba(45,106,79,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.service-card-v2::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(149,213,178,0.35), transparent 70%);
    border-radius: 50%;
}
.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(45,106,79,0.18);
}
.service-card-v2 .svc-img {
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}
.service-card-v2 h4 { font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.service-card-v2 .svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 0.75rem;
}
.service-card-v2 .svc-link:hover { gap: 0.6rem; }
.service-card-v2 .icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(45,106,79,0.12), rgba(149,213,178,0.35));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Service detail */
.service-detail-hero { padding-bottom: 2rem; }
.content-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #495057;
}
.content-body h2, .content-body h3 { color: var(--dark); margin-top: 1.5rem; }
.service-sidebar-card {
    background: linear-gradient(145deg, #fff, #f0f7f3);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(45,106,79,0.1);
}

/* Blog enhanced */
.blog-card-v2 {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    border: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(45,106,79,0.14);
}
.blog-card-v2 .card-img-wrap { position: relative; height: 220px; overflow: hidden; }
.blog-card-v2 .card-img-top { height: 100%; width: 100%; object-fit: cover; }
.blog-card-v2 .blog-date-badge {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(255,255,255,0.95);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
}
.blog-card-v2 .card-body { padding: 1.35rem 1.5rem 1.5rem; }
.blog-card-v2 h5 a { color: var(--dark); font-weight: 600; }
.blog-card-v2 h5 a:hover { color: var(--primary); }
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Modern sections – blog & services */
.section-eyebrow,
.page-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.page-hero__eyebrow { color: rgba(255,255,255,0.9); }
.page-hero--blog,
.page-hero--services {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 55%, #40916c 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}
.services-page-intro {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #6c757d;
    font-size: 1.05rem;
}
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.blog-filter-pill {
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    background: #fff;
    border: 1px solid rgba(45,106,79,0.2);
    transition: all 0.25s ease;
}
.blog-filter-pill:hover,
.blog-filter-pill.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.cta-band {
    background: linear-gradient(135deg, #1b4332, #40916c);
    border-radius: 0;
}
.service-card-modern,
.blog-card-modern {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(45,106,79,0.1);
    box-shadow: 0 10px 32px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.service-card-modern:hover,
.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(45,106,79,0.16);
}
.service-card-modern__media,
.blog-card-modern__media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, rgba(45,106,79,0.08), rgba(149,213,178,0.25));
}
.service-card-modern__media img,
.blog-card-modern__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card-modern:hover .service-card-modern__media img,
.blog-card-modern:hover .blog-card-modern__media img {
    transform: scale(1.06);
}
.service-card-modern__icon,
.blog-card-modern__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.75rem;
    color: var(--primary);
}
.blog-card-modern__date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}
.service-card-modern__body,
.blog-card-modern__body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-modern__cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: rgba(45,106,79,0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.65rem;
    width: fit-content;
}
.service-card-modern__title,
.blog-card-modern__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.service-card-modern__title a,
.blog-card-modern__title a {
    color: var(--dark);
}
.service-card-modern__title a:hover,
.blog-card-modern__title a:hover {
    color: var(--primary);
}
.service-card-modern__desc,
.blog-card-modern__excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}
.service-card-modern__link,
.blog-card-modern__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: auto;
}
.service-card-modern__link:hover,
.blog-card-modern__link:hover {
    gap: 0.55rem;
}
.section-services-home { padding-top: 4.5rem; }
.section-blog-modern { background: #f8faf9; }

/* Calculator results */
.calc-result-card {
    border-radius: 18px;
    padding: 1.25rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #40916c);
}
.calc-result-card.calc-result-warning { background: linear-gradient(135deg, #e76f51, #f4a261); }
.calc-result-card.calc-result-success { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.calc-result-card.calc-result-info { background: linear-gradient(135deg, #457b9d, #a8dadc); }
.calc-result-card.calc-result-fire { background: linear-gradient(135deg, #e63946, #f4a261); }
.calc-result-card.calc-result-water { background: linear-gradient(135deg, #0077b6, #90e0ef); }
.calc-result-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.calc-result-row:last-child { border-bottom: none; }
.calc-result-icon { font-size: 1.35rem; }
.calc-result-row small { opacity: 0.85; display: block; }
.calc-result-row strong { font-size: 1.1rem; }
.calc-progress-wrap {
    height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 50px;
    margin: 0.75rem 0;
    overflow: hidden;
}
.calc-progress-bar {
    height: 100%;
    background: #fff;
    border-radius: 50px;
    transition: width 0.6s ease;
}
.calc-advice { font-size: 0.9rem; margin: 0.75rem 0; opacity: 0.95; }
.calc-cta-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Utilities */
.min-vh-75 { min-height: 75vh; }
.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 24px rgba(45,106,79,0.12);
}
.brand-text-wrap { line-height: 1.2; max-width: min(220px, 55vw); }
.brand-tagline {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.page-hero .hero-tagline { max-width: 640px; margin: 0.5rem auto 0; opacity: 0.9; }
.blog-page-intro { max-width: 560px; margin: 0 auto 2rem; }
.blog-filter-bar { gap: 0.5rem; }
.services-page-intro { max-width: 560px; margin: 0 auto 2.5rem; text-align: center; }
.calculators-grid .calc-card { height: auto; }

/* AOS mobil: kaydırmayı kilitlemesin, içerik görünür kalsın */
@media (max-width: 991px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
    }
    body.aos-init,
    body[data-aos-easing] {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        height: auto !important;
    }
}

/* Responsive */
@media (max-width: 991px) {
    main { padding-bottom: 5.5rem; }
    .hero-section, .hero-slide,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item { min-height: 70vh; }
    .hero-content { padding: 2.5rem 0; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .stats-band { margin-top: -2rem; padding: 0 0.5rem; }
    .stats-section { padding: 1.5rem 0.35rem; }
    .about-img-placeholder { min-height: 200px; max-height: none; }
    .about-page-row { overflow: visible; }
    .hakkimizda-stats-wrap,
    .faq-section { overflow: visible; }
    .about-home-row,
    .about-page-row { text-align: center; }
    .about-home-row .about-list,
    .about-page-row .about-list { text-align: left; }
    .hakkimizda-stats-wrap .stats-section { margin-left: 0; margin-right: 0; }
    .brand-text { font-size: 0.95rem; }
    .navbar-brand img { max-height: 40px; width: auto; }
    .blog-card-v2 .card-img-wrap { height: 200px; }
    .service-card-v2 { padding: 1.5rem; }
    .map-wrap:not(.map-wrap--responsive) { height: 280px; }
    .contact-card { padding: 1.5rem; }
    .testimonial-card { padding: 1.5rem; }
    .ba-slider { height: 220px; }
    .blog-section-head { align-items: flex-start !important; }
    .contact-preview-row { flex-direction: column; }
    .contact-preview-map { margin-top: 0.5rem; }
    .contact-page-row .col-lg-6 + .col-lg-6 { margin-top: 0.5rem; }
    .ai-assistant-modal {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }
    .ai-assistant-panel {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    .ai-header { border-radius: 0; }
    .ai-questions { max-height: calc(100vh - 200px); }
    .glass-card.ai-assistant-panel { border-radius: 0; }
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .navbar-nav .nav-link { padding: 0.65rem 0.85rem !important; }
    .navbar-nav .btn-primary { width: 100%; margin-top: 0.5rem; }
    .footer-monitor { font-size: 0.72rem; line-height: 1.45; }
}
@media (max-width: 768px) {
    .hero-section, .hero-slide,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item { min-height: 62vh; }
    .min-vh-75 { min-height: 50vh; }
    .hero-content h1 { font-size: clamp(1.5rem, 6vw, 2rem); hyphens: auto; }
    .hero-content p { font-size: 1rem; max-width: 100%; }
    .section-subtitle { margin-bottom: 2rem; }
    .page-hero h1 { font-size: 1.65rem; }
    .page-hero p { font-size: 0.95rem; padding: 0 0.5rem; }
    .page-hero .lead { font-size: 1rem; }
    .blog-filter-bar { justify-content: flex-start !important; overflow-x: auto; flex-wrap: nowrap !important; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
    .blog-filter-bar .btn,
    .blog-filter-pill { flex-shrink: 0; }
    .gallery-thumb-img { height: 160px; }
    .service-card-modern__body,
    .blog-card-modern__body { padding: 1.15rem 1.25rem 1.35rem; }
    .section-services-home { padding-top: 3.5rem; }
    .testimonial-card .quote { font-size: 0.95rem; }
}
@media (max-width: 576px) {
    .fab-menu { bottom: max(1rem, env(safe-area-inset-bottom)); right: max(1rem, env(safe-area-inset-right)); }
    .section { padding: 3rem 0; }
    .hero-section, .hero-slide,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item { min-height: 58vh; }
    .hero-content { padding: 2rem 0 2.5rem; }
    .hero-content h1 { font-size: 1.55rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-btns { gap: 0.65rem; }
    .hero-btns .btn { font-size: 0.95rem; padding: 0.65rem 1.25rem; }
    .stats-band { margin-top: -1.25rem; padding: 0 0.35rem; }
    .stats-section { border-radius: 16px; padding: 1.25rem 0.15rem; }
    .stat-item { padding: 0.5rem 0.2rem; }
    .stat-number { font-size: clamp(1.2rem, 5.5vw, 1.85rem); }
    .page-hero { padding: 2.75rem 0 2rem; }
    .page-hero h1 { font-size: 1.5rem; }
    .about-img-placeholder { min-height: 220px; }
    .calc-card { padding: 1.25rem; margin-bottom: 0; }
    .calc-cta-btns { flex-direction: column; }
    .calc-cta-btns .btn { width: 100%; min-width: 0; }
    .calc-result-card { padding: 1rem; }
    .service-card, .service-card-v2 { padding: 1.35rem; }
    .blog-card-v2 .card-body { padding: 1.15rem; }
    .blog-card-v2 .card-img-wrap { height: 180px; }
    .brand-tagline { display: none; }
    .brand-text-wrap { max-width: min(180px, 50vw); }
    .container { padding-left: 1rem; padding-right: 1rem; }
    body.ai-modal-open { overflow: hidden; }
    .contact-preview-row { flex-direction: column; }
    .contact-preview-info .btn { width: 100%; max-width: none; }
    .blog-section-head { flex-direction: column; align-items: stretch !important; gap: 1rem !important; }
    .blog-section-head .btn { width: 100%; text-align: center; }
    .about-list li { font-size: 0.95rem; word-break: break-word; }
    .contact-info-card { padding: 1.25rem; }
    .contact-card.glass-card { padding: 1.25rem !important; }
    .carousel-control-prev, .carousel-control-next { width: 2.25rem; opacity: 0.85; }
    .site-footer { margin-top: 2.5rem; }
    .footer-top { padding: 2.5rem 0 1.5rem; }
    .footer-credit, .footer-monitor { padding: 0 0.25rem; }
    .about-page-row .btn-lg.rounded-pill { width: 100%; }
    img, iframe, video, svg { max-width: 100%; }
}
