/* =====================================================
   Vera Mantar — Ana Stil Dosyası
   Renk Paleti: Koyu Yeşil + Beyaz + Altın vurgu
   ===================================================== */

:root {
    --vm-green-900: #0d2b1a;
    --vm-green-800: #1a3d28;
    --vm-green-700: #1e4d32;
    --vm-green-600: #2a6045;
    --vm-green-500: #2e7d52;
    --vm-green-400: #3a9464;
    --vm-green-300: #4aad76;
    --vm-green-200: #8dd4ae;
    --vm-green-100: #c8edd9;
    --vm-green-50:  #f0faf4;

    --vm-gold:      #c9a84c;
    --vm-gold-light:#e8c96b;
    --vm-white:     #ffffff;
    --vm-off-white: #fafffe;
    --vm-gray-light:#f5f7f5;
    --vm-gray:      #6b7b6e;
    --vm-dark:      #0d2b1a;

    --vm-shadow:    0 4px 24px rgba(30,77,50,.12);
    --vm-shadow-lg: 0 12px 48px rgba(30,77,50,.18);
    --vm-radius:    12px;
    --vm-radius-lg: 20px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Nunito', sans-serif;
}

/* ── RESET & BASE ── */
* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--vm-white);
    color: #2d3c32;
    padding-top: 76px;
}

h1,h2,h3,h4,h5 { font-family: var(--font-display); }

img { max-width:100%; }

a { color: var(--vm-green-600); text-decoration:none; }
a:hover { color: var(--vm-green-400); }

/* ── NAVBAR ── */
.vm-navbar {
    background: var(--vm-green-900);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    padding: .75rem 0;
    transition: all .3s;
}

.vm-navbar.scrolled {
    background: rgba(13,43,26,.97);
    backdrop-filter: blur(12px);
}

.vm-logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--vm-green-500), var(--vm-green-300));
    border-radius: 10px;
    display: flex; align-items:center; justify-content:center;
    font-size: 1.1rem; color: white;
    flex-shrink:0;
}
.vm-logo-icon--sm { width:34px; height:34px; font-size:.9rem; }

/* Logo görseli (admin panelinden ayarlanabilir) */
.vm-navbar-logo {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 1px 3px rgba(0,0,0,.2));
}
@media (max-width: 576px) {
    .vm-navbar-logo { height: 36px; max-width: 140px; }
}

.vm-brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height:1.1;
}
.vm-brand-tagline {
    font-size: .62rem;
    color: var(--vm-green-200);
    font-weight: 300;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: .9rem;
    color: rgba(255,255,255,.8) !important;
    border-radius: 8px;
    padding: .45rem .85rem !important;
    transition: all .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,.1);
}

.vm-btn-nav {
    background: var(--vm-green-500) !important;
    color: white !important;
    border-radius: 8px !important;
}
.vm-btn-nav:hover {
    background: var(--vm-green-400) !important;
}

/* ── BUTTONS ── */
.btn-vm-primary {
    background: linear-gradient(135deg, var(--vm-green-600), var(--vm-green-500));
    color: white !important;
    border: none;
    border-radius: var(--vm-radius);
    padding: .7rem 1.8rem;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(42,96,69,.35);
}
.btn-vm-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42,96,69,.4);
    background: linear-gradient(135deg, var(--vm-green-500), var(--vm-green-400));
}

.btn-vm-outline {
    background: transparent;
    color: var(--vm-green-600) !important;
    border: 2px solid var(--vm-green-500);
    border-radius: var(--vm-radius);
    padding: .65rem 1.8rem;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s;
}
.btn-vm-outline:hover {
    background: var(--vm-green-500);
    color: white !important;
    transform: translateY(-2px);
}

.btn-vm-white {
    background: white;
    color: var(--vm-green-700) !important;
    border: none;
    border-radius: var(--vm-radius);
    padding: .7rem 1.8rem;
    font-weight: 700;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-vm-white:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--vm-green-900) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── HERO ── */
.vm-hero {
    background: linear-gradient(135deg, var(--vm-green-900) 0%, var(--vm-green-700) 60%, var(--vm-green-500) 100%);
    min-height: 92vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
}

.vm-hero::before {
    content:'';
    position:absolute; inset:0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vm-hero-orb {
    position:absolute;
    border-radius:50%;
    filter: blur(80px);
    opacity:.15;
}
.vm-hero-orb-1 {
    width:500px; height:500px;
    background: var(--vm-green-300);
    top:-100px; right:-100px;
}
.vm-hero-orb-2 {
    width:300px; height:300px;
    background: var(--vm-gold);
    bottom:-50px; left:-50px;
}

.vm-hero-content { position:relative; z-index:2; }

.vm-hero-badge {
    display: inline-flex; align-items:center; gap:.5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    color: var(--vm-green-100);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .82rem; font-weight:600;
    letter-spacing:.05em; text-transform:uppercase;
    margin-bottom:1.5rem;
}

.vm-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.vm-hero h1 em {
    font-style:normal;
    color: var(--vm-gold-light);
}

.vm-hero p.lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    max-width: 480px;
    line-height:1.7;
    margin-bottom:2rem;
}

.vm-hero-stats {
    display:flex; gap:2rem; flex-wrap:wrap;
    margin-top:2.5rem;
    padding-top:2rem;
    border-top:1px solid rgba(255,255,255,.15);
}
.vm-hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight:800;
    color: var(--vm-gold-light);
    line-height:1;
}
.vm-hero-stat-label {
    font-size:.8rem; color:rgba(255,255,255,.6);
    font-weight:600; text-transform:uppercase; letter-spacing:.05em;
}

.vm-hero-image-wrap {
    position:relative;
    display:flex; justify-content:center;
}
.vm-hero-img-bg {
    position:absolute;
    width:420px; height:420px;
    background: rgba(255,255,255,.06);
    border-radius:50%;
    top:50%; left:50%; transform:translate(-50%,-50%);
    border:1px solid rgba(255,255,255,.1);
}
.vm-hero-placeholder {
    width:380px; height:380px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border-radius:50%;
    border:2px solid rgba(255,255,255,.12);
    display:flex; align-items:center; justify-content:center;
    font-size:8rem; color: rgba(255,255,255,.5);
    position:relative; z-index:2;
    animation: floatAnim 4s ease-in-out infinite;
}
@keyframes floatAnim {
    0%,100% { transform:translateY(0); }
    50% { transform:translateY(-16px); }
}

/* ── SECTION COMMONS ── */
.vm-section { padding:90px 0; }
.vm-section-alt { background: var(--vm-green-50); }
.vm-section-dark {
    background: linear-gradient(135deg, var(--vm-green-900), var(--vm-green-700));
    color:white;
}

.vm-section-label {
    display:inline-flex; align-items:center; gap:.5rem;
    color: var(--vm-green-600);
    font-size:.8rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.1em;
    margin-bottom:.75rem;
}
.vm-section-label::before {
    content:'';
    width:28px; height:2px;
    background: var(--vm-green-500);
}

.vm-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight:800;
    color: var(--vm-green-900);
    line-height:1.15;
    margin-bottom:1rem;
}
.vm-section-title.light { color:white; }

.vm-divider {
    width:60px; height:4px;
    background: linear-gradient(90deg, var(--vm-green-500), var(--vm-green-300));
    border-radius:2px;
    margin:1rem 0 1.5rem;
}
.vm-divider.center { margin-left:auto; margin-right:auto; }

/* ── CARDS ── */
.vm-card {
    background:white;
    border-radius: var(--vm-radius-lg);
    box-shadow: var(--vm-shadow);
    overflow:hidden;
    transition: transform .3s, box-shadow .3s;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
}
.vm-card:hover {
    transform:translateY(-6px);
    box-shadow: var(--vm-shadow-lg);
}

.vm-card-img-wrap {
    height:220px;
    background: linear-gradient(135deg, var(--vm-green-50), var(--vm-green-100));
    display:flex; align-items:center; justify-content:center;
    font-size:5rem;
    overflow:hidden;
    position:relative;
}
.vm-card-img-wrap img {
    width:100%; height:100%; object-fit:cover;
}
.vm-card-img-wrap .vm-card-icon {
    font-size:4rem; line-height:1;
    color: var(--vm-green-400);
}

.vm-card-body { padding:1.5rem; }

.vm-card-tag {
    display:inline-block;
    background: var(--vm-green-50);
    color: var(--vm-green-600);
    border-radius:50px;
    padding:.2rem .8rem;
    font-size:.75rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.05em;
    margin-bottom:.75rem;
}

/* ── FEATURE ICONS ── */
.vm-feature-icon {
    width:64px; height:64px;
    background: linear-gradient(135deg, var(--vm-green-50), var(--vm-green-100));
    border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.5rem; color:var(--vm-green-600);
    margin-bottom:1.25rem;
    flex-shrink:0;
    transition:all .3s;
}
.vm-feature-card:hover .vm-feature-icon {
    background: linear-gradient(135deg, var(--vm-green-200), var(--vm-green-100));
    color: var(--vm-green-700);
    transform:rotate(-5deg) scale(1.05);
}

.vm-feature-card {
    padding:1.75rem;
    border-radius:var(--vm-radius-lg);
    border:2px solid transparent;
    transition:all .3s;
    height:100%;
}
.vm-feature-card:hover {
    border-color: var(--vm-green-200);
    background: rgba(240,250,244,.6);
    box-shadow: 0 4px 20px rgba(42,96,69,.08);
}

/* ── OTOMASYON HERO ── */
.vm-auto-hero {
    background: linear-gradient(135deg, var(--vm-green-900) 0%, var(--vm-green-700) 100%);
    padding:120px 0 80px;
    color:white;
    position:relative; overflow:hidden;
}
.vm-auto-hero::after {
    content:'';
    position:absolute; bottom:-2px; left:0; right:0;
    height:60px;
    background:white;
    clip-path: ellipse(60% 100% at 50% 100%);
}

.vm-page-hero {
    background: linear-gradient(135deg, var(--vm-green-900), var(--vm-green-700));
    padding:100px 0 60px;
    color:white;
    position:relative; overflow:hidden;
}
.vm-page-hero::after {
    content:'';
    position:absolute; bottom:0; left:0; right:0;
    height:40px;
    background:white;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── COUNTER ── */
.vm-counter-section {
    background: linear-gradient(135deg, var(--vm-green-700), var(--vm-green-600));
    padding:60px 0;
    color:white;
}
.vm-counter-num {
    font-family:var(--font-display);
    font-size:3rem; font-weight:800;
    color:white; line-height:1;
}
.vm-counter-label {
    font-size:.85rem; color:rgba(255,255,255,.7);
    font-weight:600; text-transform:uppercase; letter-spacing:.05em;
    margin-top:.25rem;
}

/* ── TESTIMONIALS ── */
.vm-testimonial {
    background:white;
    border-radius:var(--vm-radius-lg);
    padding:2rem;
    box-shadow:var(--vm-shadow);
    border-left:4px solid var(--vm-green-500);
    height:100%;
}
.vm-stars { color:var(--vm-gold); font-size:1.1rem; }

/* ── CONTACT FORM ── */
.vm-form-control {
    border: 2px solid var(--vm-green-100);
    border-radius: var(--vm-radius);
    padding: .75rem 1rem;
    font-size:.95rem;
    transition:border-color .2s;
    width:100%;
    font-family:var(--font-body);
}
.vm-form-control:focus {
    outline:none;
    border-color:var(--vm-green-500);
    box-shadow:0 0 0 4px rgba(46,125,82,.1);
}
.vm-form-label {
    font-weight:700; font-size:.88rem;
    color:var(--vm-green-800);
    margin-bottom:.4rem;
    display:block;
}

/* ── FAQ ── */
.vm-faq-item {
    background:white;
    border-radius:var(--vm-radius);
    box-shadow:var(--vm-shadow);
    margin-bottom:1rem;
    overflow:hidden;
    border:1px solid var(--vm-green-100);
}
.vm-faq-question {
    padding:1.25rem 1.5rem;
    font-weight:700; color:var(--vm-green-800);
    cursor:pointer;
    display:flex; align-items:center; justify-content:space-between;
    gap:1rem;
    user-select:none;
    transition:background .2s;
}
.vm-faq-question:hover { background:var(--vm-green-50); }
.vm-faq-question.open { background:var(--vm-green-50); color:var(--vm-green-600); }
.vm-faq-question .vm-faq-icon { transition:transform .3s; flex-shrink:0; }
.vm-faq-question.open .vm-faq-icon { transform:rotate(45deg); }
.vm-faq-answer {
    display:none;
    padding:0 1.5rem 1.25rem;
    color:var(--vm-gray);
    line-height:1.7;
    border-top:1px solid var(--vm-green-100);
}

/* ── BREADCRUMB ── */
.vm-breadcrumb { display:flex; gap:.5rem; align-items:center; flex-wrap:wrap; }
.vm-breadcrumb a { color:rgba(255,255,255,.7); font-size:.88rem; }
.vm-breadcrumb a:hover { color:white; }
.vm-breadcrumb span { color:rgba(255,255,255,.4); font-size:.88rem; }
.vm-breadcrumb .current { color:white; font-size:.88rem; font-weight:600; }

/* ── GALERI ── */
.vm-gallery-item {
    border-radius:var(--vm-radius);
    overflow:hidden;
    aspect-ratio:4/3;
    position:relative;
    cursor:pointer;
}
.vm-gallery-item img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .4s;
}
.vm-gallery-item:hover img { transform:scale(1.08); }
.vm-gallery-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(13,43,26,.8), transparent);
    opacity:0; transition:opacity .3s;
    display:flex; align-items:flex-end; padding:1rem;
    color:white; font-weight:600; font-size:.9rem;
}
.vm-gallery-item:hover .vm-gallery-overlay { opacity:1; }
.vm-gallery-placeholder {
    width:100%; height:100%;
    background:linear-gradient(135deg, var(--vm-green-50), var(--vm-green-100));
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:.5rem; color:var(--vm-green-600);
    font-size:.85rem; font-weight:600;
}
.vm-gallery-placeholder i { font-size:2.5rem; opacity:.5; }

/* ── NEWS ── */
.vm-news-card {
    background:white;
    border-radius:var(--vm-radius-lg);
    box-shadow:var(--vm-shadow);
    overflow:hidden;
    transition:all .3s;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
}
.vm-news-card:hover { transform:translateY(-4px); box-shadow:var(--vm-shadow-lg); }
.vm-news-card-img {
    height:200px;
    background:linear-gradient(135deg, var(--vm-green-50), var(--vm-green-100));
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
}
.vm-news-card-img img { width:100%; height:100%; object-fit:cover; }
.vm-news-card-img i { font-size:3rem; color:var(--vm-green-400); }
.vm-news-card-body { padding:1.5rem; }
.vm-news-date { color:var(--vm-gray); font-size:.82rem; font-weight:600; }

/* ── OTOMASYON HIGHLIGHT ── */
.vm-auto-highlight {
    background:linear-gradient(135deg, var(--vm-green-900) 0%, var(--vm-green-700) 100%);
    border-radius:var(--vm-radius-lg);
    color:white; padding:2.5rem;
    position:relative; overflow:hidden;
}
.vm-auto-highlight::before {
    content:'';
    position:absolute; top:-40px; right:-40px;
    width:200px; height:200px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

/* ── MANTAR DETAIL ── */
.vm-mantar-card {
    background:white;
    border-radius:var(--vm-radius-lg);
    box-shadow:var(--vm-shadow);
    overflow:hidden;
    margin-bottom:2rem;
    border:1px solid var(--vm-green-100);
}
.vm-mantar-img {
    height:280px;
    background:linear-gradient(135deg, var(--vm-green-50), var(--vm-green-100));
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
}
.vm-mantar-img img { width:100%; height:100%; object-fit:cover; }
.vm-mantar-img i { font-size:6rem; color:var(--vm-green-400); opacity:.6; }
.vm-mantar-info { padding:2rem; }
.vm-info-chip {
    display:inline-flex; align-items:center; gap:.4rem;
    background:var(--vm-green-50);
    color:var(--vm-green-700);
    border-radius:50px; padding:.3rem .9rem;
    font-size:.8rem; font-weight:700;
    margin:.2rem;
}

/* ── FOOTER ── */
.vm-footer {
    background: var(--vm-green-900);
    color:white;
}
.vm-footer-heading {
    font-family:var(--font-display);
    letter-spacing:.03em;
}
.vm-footer-links { margin:0; padding:0; }
.vm-footer-links li { margin-bottom:.5rem; }
.vm-footer-links a {
    color:rgba(255,255,255,.55);
    font-size:.9rem;
    transition:color .2s;
}
.vm-footer-links a:hover { color:white; }

.vm-footer-contact { list-style:none; padding:0; margin:0; }
.vm-footer-contact li {
    display:flex; align-items:flex-start; gap:.75rem;
    margin-bottom:.9rem; font-size:.9rem; color:rgba(255,255,255,.6);
}
.vm-footer-contact i { color:var(--vm-green-300); margin-top:.2rem; width:14px; }
.vm-footer-contact a { color:rgba(255,255,255,.6); }
.vm-footer-contact a:hover { color:white; }

.vm-social-btn {
    width:38px; height:38px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:white; font-size:.9rem;
    transition:all .2s;
}
.vm-social-btn:hover {
    background:var(--vm-green-500); color:white;
    border-color:var(--vm-green-500);
    transform:translateY(-2px);
}

.vm-footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:1.25rem 0;
    margin-top:1rem;
}

/* ── WHATSAPP ── */
.vm-whatsapp-btn {
    position:fixed; bottom:2rem; right:2rem; z-index:999;
    width:56px; height:56px;
    background:#25d366;
    color:white; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.6rem;
    box-shadow:0 4px 20px rgba(37,211,102,.4);
    transition:all .3s;
}
.vm-whatsapp-btn:hover {
    transform:scale(1.1);
    color:white;
    box-shadow:0 8px 32px rgba(37,211,102,.5);
}

/* ── ALERT ── */
.vm-alert {
    border-radius:var(--vm-radius);
    padding:1rem 1.25rem;
    margin-bottom:1rem;
    font-size:.92rem; font-weight:600;
}
.vm-alert-success { background:var(--vm-green-50); color:var(--vm-green-700); border:1px solid var(--vm-green-200); }
.vm-alert-danger { background:#fff5f5; color:#c00; border:1px solid #fecaca; }

/* ── ANIMATIONS ── */
.fade-up {
    opacity:0; transform:translateY(30px);
    transition:opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
    opacity:1; transform:translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    body { padding-top: 70px; }
    .vm-navbar {
        position: fixed; top: 0; left: 0; right: 0;
        z-index: 1030; width: 100%; padding: .6rem 0;
    }
    .navbar-collapse {
        background: var(--vm-green-900);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        max-height: 80vh; overflow-y: auto;
    }
    .navbar-nav { gap: .25rem; }
    .nav-link {
        padding: .75rem 1rem !important;
        border-radius: 8px;
    }
    .ms-auto { margin-left: 0 !important; }
    .vm-btn-nav {
        width: 100%; text-align: center;
        justify-content: center; margin-top: .5rem;
    }
    .vm-hero-content { text-align: center; }
    .vm-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .vm-hero-stats { justify-content: center; gap: 1.5rem; }
    .vm-hero-image-wrap { margin-top: 2rem; }
    .vm-hero-placeholder { width: 260px; height: 260px; font-size: 6rem; }
    .vm-hero-img-bg { width: 300px; height: 300px; }
    .vm-mantar-img { height: 220px; }
    .vm-mantar-info { padding: 1.25rem; }
    .vm-card-img-wrap { height: 180px; }
    .vm-news-card-img { height: 160px; }
    .vm-gallery-item { aspect-ratio: 1/1; }
}

@media (max-width: 768px) {
    .vm-section { padding: 50px 0; }
    .vm-hero { min-height: auto; padding: 60px 0 80px; }
    .vm-hero-badge { font-size: .75rem; }
    .vm-hero-placeholder { width: 200px; height: 200px; font-size: 5rem; }
    .vm-hero-img-bg { width: 240px; height: 240px; }
    .vm-hero-stats { flex-direction: column; align-items: center; gap: 1rem; }
    .vm-hero-content .d-flex.gap-3 { justify-content: center; flex-direction: column; align-items: center; }
    .vm-section-title { font-size: 1.6rem; }
    .vm-mantar-card { margin-bottom: 1.5rem; }
    .vm-mantar-img { height: 200px; }
    .vm-footer-contact, .vm-footer-links { margin-left: 0; }
    .vm-footer-links li { margin-bottom: .4rem; }
    .vm-whatsapp-btn { bottom: 1.5rem; right: 1.5rem; width: 48px; height: 48px; font-size: 1.4rem; }
    .vm-page-hero { padding: 80px 0 40px; }
    .vm-page-hero::after { height: 24px; }
    .vm-counter-num { font-size: 2.2rem; }
    .vm-admin-main { margin-left: 0; padding-bottom: 60px; }
}

@media (max-width: 576px) {
    .vm-section { padding: 40px 0; }
    .vm-hero-placeholder { width: 160px; height: 160px; font-size: 4rem; }
    .vm-hero-img-bg { width: 190px; height: 190px; }
    .btn-vm-primary, .btn-vm-white, .btn-vm-outline { padding: .6rem 1.2rem; font-size: .85rem; }
    .vm-card-body { padding: 1rem; }
    .vm-card-img-wrap { height: 160px; }
    .vm-mantar-img { height: 180px; }
}

/* ── BLOG ── */
.blog-featured-img img {
    width: 100%;
    border-radius: var(--vm-radius-lg);
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}
.blog-summary {
    font-size: 1.1rem;
    color: var(--vm-green-700);
    font-weight: 600;
    line-height: 1.7;
    border-left: 4px solid var(--vm-green-500);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}
.blog-body {
    line-height: 1.9;
    color: #3d4d40;
}
.blog-body p { margin-bottom: 1.2rem; }
.blog-body h2, .blog-body h3, .blog-body h4 {
    color: var(--vm-green-900);
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}
.blog-body ul, .blog-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.blog-body li { margin-bottom: 0.4rem; }
.blog-body blockquote {
    border-left: 4px solid var(--vm-green-500);
    padding-left: 1.25rem;
    color: var(--vm-gray);
    font-style: italic;
    margin: 1.5rem 0;
}
.blog-sidebar {
    position: sticky;
    top: 90px;
}
.blog-sidebar .vm-card { overflow: visible; }
.vm-card-header-custom {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--vm-green-100);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--vm-green-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.vm-card-header-custom i { color: var(--vm-green-500); }
.vm-card-body-custom { padding: 0.75rem; }
.blog-related-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid var(--vm-green-50);
}
.blog-related-item:last-child { border-bottom: none; }
.blog-related-item:hover { background: var(--vm-green-50); }
.blog-related-img {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-related-text { flex: 1; min-width: 0; }
.blog-related-date {
    font-size: 0.72rem;
    color: var(--vm-gray);
    margin-bottom: 0.2rem;
}
.blog-related-date i { margin-right: 0.2rem; }
.blog-related-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vm-green-800);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive blog */
@media (max-width: 992px) {
    .blog-sidebar { position: static; top: auto; }
    .blog-featured-img img { aspect-ratio: 16/9; }
}
@media (max-width: 576px) {
    .blog-summary { font-size: 1rem; }
    .blog-body { font-size: 0.95rem; }
}

/* ── MİSYON / VİZYON KARTLARI ── */
.vm-mission-card {
    border-radius: var(--vm-radius-lg);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.vm-mission-card--dark {
    background: linear-gradient(135deg, var(--vm-green-900), var(--vm-green-700));
    color: white;
}
.vm-mission-card--gold {
    background: linear-gradient(135deg, var(--vm-gold), #b8922a);
    color: #1a1a00;
}
.vm-mission-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,.18);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: white;
    flex-shrink: 0;
}
.vm-mission-card--gold .vm-mission-icon {
    background: rgba(0,0,0,.12);
    color: #4a2e00;
}

/* ── OTOMASYON HERO İKON ── */
.vm-auto-hero-icon {
    width: 220px; height: 220px;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 7rem; color: rgba(255,255,255,.6);
    margin: 0 auto;
    animation: floatAnim 4s ease-in-out infinite;
}
.vm-auto-cta-icon {
    width: 200px; height: 200px;
    background: rgba(255,255,255,.06);
    border: 2px solid rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; color: var(--vm-gold-light);
    margin: 0 auto;
    animation: floatAnim 5s ease-in-out infinite;
}

/* ── ADMİN MOBİL İYİLEŞTİRME ── */
@media (max-width: 768px) {
    .vm-auto-hero-icon { width: 140px; height: 140px; font-size: 4.5rem; }
    .vm-auto-cta-icon  { width: 120px; height: 120px; font-size: 3.5rem; }
    .vm-mission-card   { padding: 1.75rem; }
    .vm-mission-icon   { width: 52px; height: 52px; font-size: 1.4rem; }

    /* Mantar kartı mobil — görsel önce gelsin */
    .vm-mantar-card .row { flex-direction: column; }
    .vm-mantar-card .order-md-1,
    .vm-mantar-card .order-md-2 { order: unset !important; }
    .vm-mantar-img { height: 220px !important; }
    .vm-mantar-info { padding: 1.25rem !important; }
}

@media (max-width: 576px) {
    .vm-auto-hero-icon { width: 110px; height: 110px; font-size: 3.5rem; }
    .vm-hero-stats     { gap: .75rem; }
    .vm-hero-stat-num  { font-size: 1.6rem; }
}
