/* İlaçlama Merkezi — JET-style theme */
:root {
    --jet-green-dark: #1b5e20;
    --jet-green: #2e7d32;
    --jet-green-nav: #388e3c;
    --jet-green-light: #66bb6a;
    --jet-yellow: #ffc107;
    --jet-yellow-dark: #f9a825;
    --jet-footer: #1a2332;
    --jet-footer-deep: #121820;
    --jet-text: #333;
    --jet-muted: #666;
    --jet-border: #e0e0e0;
    --jet-white: #fff;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

body.jet-body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--jet-text);
    background: var(--jet-white);
    line-height: 1.6;
}

.jet-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .jet-container { padding: 0 24px; }
}

/* Top utility bar */
.jet-topbar {
    background: var(--jet-green-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    display: none;
}
@media (min-width: 768px) { .jet-topbar { display: block; } }
.jet-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.jet-topbar a { color: #fff; text-decoration: none; opacity: .95; }
.jet-topbar a:hover { opacity: 1; }
.jet-topbar-left, .jet-topbar-right { display: flex; align-items: center; gap: 20px; }

/* Main nav */
.jet-nav {
    background: var(--jet-green-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.jet-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 16px;
}
.jet-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.jet-logo-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jet-green-dark);
    font-size: 20px;
}
.jet-logo-text { font-weight: 800; font-size: 18px; line-height: 1.1; }
.jet-logo-sub { font-size: 10px; font-weight: 600; letter-spacing: .5px; opacity: .9; }

.jet-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
@media (min-width: 992px) {
    .jet-menu { display: flex; align-items: center; }
}
.jet-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background .2s;
}
.jet-menu a:hover { background: rgba(255,255,255,.15); }

.jet-nav-phone {
    display: none;
    background: var(--jet-yellow);
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    align-items: center;
    gap: 8px;
}
@media (min-width: 992px) { .jet-nav-phone { display: inline-flex; } }

.jet-hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}
@media (min-width: 992px) { .jet-hamburger { display: none; } }

/* Mobile menu */
.jet-mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
}
.jet-mobile-menu.open { transform: translateX(0); }
.jet-mobile-head {
    background: var(--jet-green-nav);
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jet-mobile-links { padding: 24px; }
.jet-mobile-links a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--jet-text);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.jet-mobile-call {
    display: block;
    margin: 24px;
    background: var(--jet-green);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

/* Hero banner */
.jet-hero {
    position: relative;
    min-height: 380px;
    background: #f5f5f5 center/cover no-repeat;
    display: flex;
    align-items: stretch;
}
@media (min-width: 768px) { .jet-hero { min-height: 460px; } }
.jet-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.7) 45%, rgba(255,255,255,.2) 100%);
}
.jet-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 16px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
@media (min-width: 768px) { .jet-hero-content { padding: 48px 24px; } }

.jet-hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.jet-hero-brand-icon {
    width: 56px;
    height: 56px;
    background: var(--jet-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}
.jet-hero-brand h1 {
    margin: 0;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    color: var(--jet-green-dark);
    line-height: 1.1;
}
.jet-hero-brand p {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--jet-green);
    letter-spacing: 1px;
}
.jet-hero-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--jet-green);
    margin-bottom: 12px;
    letter-spacing: .5px;
}
.jet-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--jet-muted);
}
.jet-hero-bullets li { padding: 4px 0; }
.jet-hero-bullets li::before { content: '✓ '; color: var(--jet-green); font-weight: 700; }

.jet-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--jet-green-dark);
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    max-width: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.jet-phone-box i { font-size: 28px; color: var(--jet-yellow); }
.jet-phone-box .num { font-size: clamp(18px, 4vw, 26px); font-weight: 800; letter-spacing: .5px; }
.jet-phone-box .lbl { font-size: 11px; opacity: .85; display: block; }

.jet-hero-slogan {
    text-align: center;
    padding: 12px;
    background: #fff;
    border-bottom: 3px solid var(--jet-green-light);
}
.jet-hero-slogan span {
    color: var(--jet-green);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Features bar */
.jet-features {
    background: #fff;
    border-bottom: 1px solid var(--jet-border);
    padding: 24px 0;
}
.jet-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 768px) { .jet-features-grid { grid-template-columns: repeat(4, 1fr); } }
.jet-feature-item { text-align: center; padding: 8px; }
.jet-feature-item i {
    font-size: 32px;
    color: var(--jet-green);
    margin-bottom: 10px;
    display: block;
}
.jet-feature-item h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: var(--jet-text); }
.jet-feature-item p { margin: 0; font-size: 12px; color: var(--jet-muted); line-height: 1.4; }

/* Section headings */
.jet-section { padding: 48px 0; }
.jet-section-alt { background: #f9f9f9; }
.jet-section-head { text-align: center; margin-bottom: 32px; }
.jet-section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--jet-green-dark);
}
.jet-section-head p { margin: 0; color: var(--jet-muted); font-size: 15px; max-width: 640px; margin-inline: auto; }

/* Service cards */
.jet-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 576px) { .jet-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .jet-services-grid { grid-template-columns: repeat(4, 1fr); } }

.jet-service-card {
    background: #fff;
    border: 1px solid var(--jet-border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
}
.jet-service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-3px);
}
.jet-service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #eee;
}
.jet-service-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.jet-service-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--jet-green-dark);
    line-height: 1.3;
}
.jet-service-card p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--jet-muted);
    flex: 1;
    line-height: 1.5;
}
.jet-service-card .more {
    color: var(--jet-green);
    font-size: 13px;
    font-weight: 700;
}
.jet-service-card .more i { font-size: 11px; margin-left: 4px; }

/* Promo banner */
.jet-promo {
    position: relative;
    min-height: 280px;
    background: var(--jet-green-dark) center/cover no-repeat;
    color: #fff;
    padding: 40px 0;
}
.jet-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27,94,32,.88);
}
.jet-promo-inner { position: relative; z-index: 1; }
.jet-promo h2 {
    margin: 0 0 12px;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    text-align: center;
}
.jet-promo p { text-align: center; opacity: .9; max-width: 700px; margin: 0 auto 24px; font-size: 14px; }

.jet-link-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) { .jet-link-columns { grid-template-columns: repeat(4, 1fr); } }
.jet-link-columns a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    opacity: .85;
    padding: 3px 0;
}
.jet-link-columns a:hover { opacity: 1; text-decoration: underline; }

/* SEO region links */
.jet-seo-links { padding: 32px 0; background: #fff; }
.jet-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
}
@media (min-width: 576px) { .jet-seo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .jet-seo-grid { grid-template-columns: repeat(4, 1fr); } }
.jet-seo-grid a {
    font-size: 12px;
    color: var(--jet-green);
    text-decoration: none;
    padding: 4px 0;
    display: block;
}
.jet-seo-grid a:hover { text-decoration: underline; }

/* Phone CTA band */
.jet-phone-cta {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    padding: 40px 0;
    text-align: center;
}
.jet-phone-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.jet-badge-24 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--jet-green);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(46,125,50,.4);
}
.jet-phone-cta-box {
    background: var(--jet-footer);
    color: #fff;
    padding: 20px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.jet-phone-cta-box i { font-size: 36px; color: var(--jet-yellow); }
.jet-phone-cta-box .num { font-size: clamp(22px, 5vw, 32px); font-weight: 800; }

/* About */
.jet-about-grid {
    display: grid;
    gap: 32px;
    align-items: start;
}
@media (min-width: 768px) { .jet-about-grid { grid-template-columns: 1fr 2fr; } }
.jet-about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.jet-about-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--jet-green-light);
}
.jet-about-content h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 800;
    color: var(--jet-green-dark);
}
.jet-about-content .prose { font-size: 14px; color: var(--jet-muted); line-height: 1.8; }
.jet-about-content .prose p { margin: 0 0 12px; }

/* Map */
.jet-map-wrap {
    border: 3px solid var(--jet-green-light);
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}
.jet-map-wrap iframe { width: 100%; border: 0; display: block; }

/* Testimonials */
.jet-testimonials-grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 768px) { .jet-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.jet-testimonial {
    background: #fff;
    border: 1px solid var(--jet-border);
    border-radius: 4px;
    padding: 24px;
    position: relative;
}
.jet-testimonial::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 48px;
    color: var(--jet-green-light);
    opacity: .5;
    line-height: 1;
}
.jet-testimonial-stars { color: var(--jet-yellow-dark); font-size: 14px; margin-bottom: 10px; }
.jet-testimonial p { margin: 0 0 12px; font-size: 14px; color: var(--jet-muted); font-style: italic; }
.jet-testimonial-author { font-weight: 700; font-size: 13px; color: var(--jet-text); }
.jet-testimonial-date { font-size: 12px; color: #999; }

/* Homepage gallery */
.jet-gallery-section { background: #fafafa; }
.jet-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
@media (min-width: 768px) {
    .jet-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 1100px) {
    .jet-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.jet-gallery-tile {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    background: #e9ece9;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s ease, transform .2s ease;
}
.jet-gallery-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 101, 52, .15);
}
.jet-gallery-tile-media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dfe8df;
}
.jet-gallery-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}
.jet-gallery-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 101, 52, .35);
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: opacity .2s ease;
}
.jet-gallery-tile:hover .jet-gallery-tile-overlay,
.jet-gallery-tile:focus-visible .jet-gallery-tile-overlay { opacity: 1; }
.jet-gallery-empty {
    text-align: center;
    color: var(--jet-muted);
    padding: 32px 0;
}
.jet-gallery-dialog {
    width: min(960px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #111;
    color: #fff;
    overflow: hidden;
}
.jet-gallery-dialog::backdrop {
    background: rgba(0, 0, 0, .82);
}
.jet-gallery-dialog-toolbar {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    margin: 0;
}
.jet-gallery-dialog-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.jet-gallery-dialog-body {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 48px 12px 20px;
    min-height: 280px;
}
.jet-gallery-dialog-figure {
    margin: 0;
    text-align: center;
    min-width: 0;
}
.jet-gallery-dialog-figure img {
    max-width: 100%;
    max-height: min(72vh, 720px);
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    background: #000;
}
.jet-gallery-dialog-figure img.is-loading { opacity: .5; }
.jet-gallery-dialog-figure figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #ccc;
    padding: 0 12px;
}
.jet-gallery-nav {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .jet-gallery-nav { display: none; }
    .jet-gallery-dialog-body { grid-template-columns: 1fr; padding-top: 44px; }
}

/* Legacy photo gallery (removed from homepage) */
.jet-photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px) { .jet-photo-gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 992px) { .jet-photo-gallery { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.jet-photo-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
    transition: transform .2s, box-shadow .2s;
}
.jet-photo-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.jet-photo-gallery-featured {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}
@media (min-width: 992px) {
    .jet-photo-gallery-featured { grid-row: span 2; aspect-ratio: auto; }
}
.jet-photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.jet-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 12px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    text-align: left;
    opacity: 0;
    transition: opacity .2s;
}
.jet-photo-gallery-item:hover .jet-photo-caption { opacity: 1; }
.jet-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.jet-lightbox[hidden] { display: none; }
.jet-lightbox-inner { max-width: 960px; width: 100%; margin: 0; text-align: center; }
.jet-lightbox-inner img { max-width: 100%; max-height: 80vh; border-radius: 6px; }
.jet-lightbox-inner figcaption { color: #ddd; font-size: 14px; margin-top: 12px; }
.jet-lightbox-close,
.jet-lightbox-prev,
.jet-lightbox-next {
    position: absolute;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
}
.jet-lightbox-close { top: 16px; right: 16px; }
.jet-lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.jet-lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Legacy pest gallery (unused) */
.jet-pest-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.jet-pest-item {
    text-align: center;
    width: 100px;
}
.jet-pest-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--jet-green-light);
    margin-bottom: 8px;
}
.jet-pest-item span { font-size: 11px; color: var(--jet-muted); font-weight: 600; display: block; }

/* Counters */
.jet-counters {
    background: #f0f0f0;
    padding: 32px 0;
}
.jet-counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
}
@media (min-width: 768px) { .jet-counters-grid { grid-template-columns: repeat(4, 1fr); } }
.jet-counter-num {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    color: var(--jet-green-dark);
    line-height: 1;
}
.jet-counter-label { font-size: 12px; color: var(--jet-muted); margin-top: 6px; font-weight: 600; }

/* FAQ */
.jet-faq-item {
    border: 1px solid var(--jet-border);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}
.jet-faq-item summary {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.jet-faq-item summary::-webkit-details-marker { display: none; }
.jet-faq-item[open] summary { background: #e8f5e9; color: var(--jet-green-dark); }
.jet-faq-body { padding: 0 20px 16px; font-size: 14px; color: var(--jet-muted); }

/* Final CTA */
.jet-final-cta {
    background: var(--jet-green);
    color: #fff;
    padding: 48px 16px;
    text-align: center;
}
.jet-final-cta h2 { margin: 0 0 12px; font-size: clamp(20px, 4vw, 28px); font-weight: 800; }
.jet-final-cta p { margin: 0 0 24px; opacity: .9; }
.jet-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .2s;
    border: none;
    cursor: pointer;
}
.jet-btn:hover { opacity: .9; }
.jet-btn-yellow { background: var(--jet-yellow); color: #1a1a1a; }
.jet-btn-white { background: #fff; color: var(--jet-green-dark); }
.jet-btn-dark { background: var(--jet-footer); color: #fff; }
.jet-btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.jet-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer */
.jet-footer {
    background: var(--jet-footer);
    color: #b0bec5;
    padding: 48px 0 0;
    font-size: 14px;
}
.jet-footer-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}
@media (min-width: 576px) { .jet-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .jet-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.jet-footer h4 { color: #fff; margin: 0 0 16px; font-size: 16px; font-weight: 700; }
.jet-footer ul { list-style: none; padding: 0; margin: 0; }
.jet-footer ul li { margin-bottom: 8px; }
.jet-footer a { color: #b0bec5; text-decoration: none; }
.jet-footer a:hover { color: var(--jet-green-light); }
.jet-footer-bottom {
    margin-top: 32px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: 13px;
    background: var(--jet-footer-deep);
}
.jet-footer-social { display: flex; gap: 10px; margin-top: 12px; }
.jet-footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Floating WA */
.jet-wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    text-decoration: none;
    transition: transform .2s;
}
.jet-wa-float:hover { transform: scale(1.08); }
@media (max-width: 767px) {
    body.jet-has-mobile-bar .jet-wa-float { display: none !important; }
    body.jet-has-mobile-bar { padding-bottom: 76px; }
    body.jet-has-mobile-bar .jet-service-page { padding-bottom: 24px; }
}

/* Service page CTA buttons */
.jet-service-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
@media (max-width: 480px) {
    .jet-service-cta { grid-template-columns: 1fr; }
}
.jet-service-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.25;
    transition: transform .15s, box-shadow .15s;
    min-height: 56px;
}
.jet-service-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.jet-service-cta-btn i { font-size: 20px; flex-shrink: 0; }
.jet-service-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.jet-service-cta-text strong { font-size: 14px; font-weight: 700; }
.jet-service-cta-text small { font-size: 12px; opacity: .85; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jet-service-cta-call { background: var(--jet-yellow); color: #1a1a1a; }
.jet-service-cta-wa { background: #fff; color: var(--jet-green-dark); border: 2px solid var(--jet-green); }
.jet-service-cta-wa i { color: #25D366; }

/* Service detail page (kept compatible) */
.jet-service-page { background: #f5f5f5; padding: 24px 0 48px; }
.jet-breadcrumb { font-size: 13px; color: var(--jet-muted); margin-bottom: 20px; overflow-x: auto; white-space: nowrap; }
.jet-breadcrumb a { color: var(--jet-green); text-decoration: none; }
.jet-detail-grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 992px) { .jet-detail-grid { grid-template-columns: 2fr 1fr; } }
.jet-card {
    background: #fff;
    border: 1px solid var(--jet-border);
    border-radius: 4px;
    overflow: hidden;
}
.jet-card-body { padding: 24px; }
.jet-sidebar-card {
    background: #fff;
    border: 1px solid var(--jet-border);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.jet-sidebar-card h4 {
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--jet-green-dark);
}
.jet-appointment-box {
    background: var(--jet-green-dark);
    color: #fff;
    border-radius: 4px;
    padding: 20px;
}
.jet-sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 10px 16px;
    display: flex;
    gap: 8px;
    box-shadow: 0 -4px 12px rgba(0,0,0,.08);
}
@media (min-width: 768px) { .jet-sticky-mobile-bar { display: none; } }
.jet-sticky-mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
}
.jet-sticky-call { background: var(--jet-green); }
.jet-sticky-wa { background: #25D366; }

/* Article prose (service pages) */
.article-prose { color: var(--jet-muted); font-size: 15px; line-height: 1.8; }
.article-prose h2 { font-size: 22px; color: var(--jet-green-dark); margin-top: 2rem; padding-bottom: .5rem; border-bottom: 2px solid #eee; }
.article-prose h3 { font-size: 18px; color: var(--jet-text); }
.article-prose .article-cta { background: var(--jet-green-dark); color: #fff; border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0; }
.article-prose .article-cta h3 { color: #fff; border: none; margin-top: 0; }
.article-prose .cta-btn-phone { background: var(--jet-yellow); color: #1a1a1a; padding: .75rem 1.25rem; border-radius: 4px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; }
.article-prose .cta-btn-wa { background: rgba(0,0,0,.3); color: #fff; padding: .75rem 1.25rem; border-radius: 4px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; border: 1px solid rgba(255,255,255,.3); }
.article-prose > p { margin-bottom: 1.1rem; }
.article-prose ul, .article-prose ol { margin: 1rem 0 1.25rem; padding-left: 0; list-style: none; }
.article-prose ul:not(.article-reasons):not(.article-bakim) li,
.article-prose ol:not(.article-steps):not(.article-toc ol) li { margin-bottom: .75rem; padding: .75rem 1rem; background: #f8f8f8; border-radius: 4px; border: 1px solid #eee; }
.article-prose .article-toc { background: #f0f9f0; border: 1px solid #c8e6c9; border-radius: 4px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.article-prose .article-steps li { display: flex; gap: .75rem; align-items: flex-start; }
.article-prose .article-steps .step-num { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; background: var(--jet-green); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.article-prose .article-reasons li { display: flex; gap: .75rem; align-items: flex-start; }
.article-prose .article-reasons .reason-icon { color: var(--jet-green); flex-shrink: 0; }
.article-prose .article-benefits { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.article-prose .article-benefit-item { padding: .75rem 1rem; background: #f0f9f0; border: 1px solid #c8e6c9; border-radius: 4px; font-size: 14px; }
.jet-about-content .prose p { margin-bottom: 1rem; line-height: 1.7; color: var(--jet-muted); }

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--jet-green-light); border-radius: 4px; }
.sidebar-link.active { background: #e8f5e9; color: var(--jet-green-dark); font-weight: 600; }
