.header{
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    align-items: center;
    position: relative;
    margin-top: 25px;
    justify-content: space-between;
    padding: 15px;
}
.header img{
    margin-left: 10px;
    width: 22%;
}
.header p{
    font-weight: 700;
    font-size: 18px;
    color: #2e7d32;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}
.header-alt{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 25px;
    padding: 10px 0;
    text-align: center;

}
.header-alt p{
    font-weight: 700;
    font-size: 18px;
    color: #2e7d32;
    margin: 0;
}
.info-bar{
    display: flex;
    align-items: center;       /* dikey ortalama */
    justify-content: space-between;
    padding: 8px 0;            /* eşit yükseklik hissi verir */
    font-size: 12.5px;
}
.left,
.right {
    line-height: 1.4;
}

.right {
    margin-left: auto;         /* sağa iter */
}
/* ===== Core Web Vitals friendly minimal CSS (no heavy shadows, no big fonts) ===== */
:root{
    --bg:#f4f7f6;
    --card:#ffffff;
    --text:#0f172a;
    --muted:#475569;
    --brand:#1e8e3e;
    --wa:#27ae60;
    --ring:rgba(30,142,62,.18);
    --radius:14px;
    --max:1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
    background:var(--bg);
    color:var(--text);
    line-height:1.55;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
a{color:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 16px}

.pill{
    display:inline-flex;align-items:center;gap:10px;
    padding:10px 14px;border-radius:999px;text-decoration:none;font-weight:800;
    border:1px solid rgba(15,23,42,.08);
    background:#fff;
    box-shadow:0 2px 10px rgba(15,23,42,.05);
    will-change:transform;
}
.pill:active{transform:translateY(1px)}
.pill.primary{background:#e67e22;color:#fff;border-color:transparent}
.pill.wa{background:var(--wa);color:#fff;border-color:transparent}
.pill small{font-weight:700;opacity:.9}


.sub{
    margin:0 0 14px;color:var(--muted);max-width:62ch;
    font-size:15.5px;
}
.tick{
    width:18px;height:18px;border-radius:6px;background:var(--brand);
    display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;
    box-shadow:0 0 0 4px var(--ring);
    margin-top:1px;
}
.tick svg{width:12px;height:12px;fill:#fff}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}


main{padding:12px 0 40px}
section{padding:18px 0}
.grid{
    display:grid;grid-template-columns:repeat(12,1fr);gap:12px;
}
.card{
    background:var(--card);
    border:1px solid rgba(15,23,42,.08);
    border-radius:var(--radius);
    padding:14px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    background: linear-gradient(135deg, rgba(30, 142, 62, .14), rgba(244, 247, 246, 0) 55%);
}
.card h2{
    font-size:20px;margin:0 0 8px;letter-spacing:-.2px;
}
.card p{margin:0;color:var(--muted);font-size:14.5px}
.span-6{grid-column:span 6}
.span-4{grid-column:span 4}
.span-12{grid-column:span 12}

.services .svc{
    display:flex;gap:10px;align-items:flex-start
}
.icon{
    width:36px;height:36px;border-radius:12px;
    background:rgba(30,142,62,.10);
    display:flex;align-items:center;justify-content:center;
    flex:0 0 auto;border:1px solid rgba(30,142,62,.18);
}
.icon svg{width:18px;height:18px;fill:var(--brand)}



.muted{color:var(--muted)}


.footer{
    padding:22px 0 70px;
    background:linear-gradient(135deg, rgba(30,142,62,.14), rgba(244,247,246,0) 55%);
    border-top:1px solid rgba(15,23,42,.06);
}

.sticky-actions{
    position:fixed;left:0;right:0;bottom:0;z-index:50;
    background:rgba(255,255,255,.92);
    border-top:1px solid rgba(15,23,42,.08);
    backdrop-filter:saturate(180%) blur(10px);
    padding:10px 12px;
}
.sticky-actions .row{
    max-width:var(--max);margin:0 auto;display:flex;gap:10px;align-items:center;justify-content:space-between;
}
.sticky-actions .row a{flex:1;text-align:center;justify-content:center}


/* content-visibility: offscreen render cost düşürür (Chrome) */
.cv{content-visibility:auto;contain-intrinsic-size: 800px;}


@media (max-width: 768px){
    .span-6,.span-4{grid-column:span 12}
    .header img {
        width: 52% !important;
    }
    .header p {
        left: 34%;
        transform: none;
    }
}

/* Mobil görünümü sınırlayan ana kapsayıcı */

/* --- Başlık Alanı --- */
h1 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.highlight-orange {
    color: #e67e22; /* Turuncu vurgu rengi */
    display: block; /* Yeni satıra geçmesini sağlar */
}

/* --- Açıklama Metni --- */
.description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

/* --- Özellik Listesi (Tikler) --- */
.feature-list {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
    color: #2e7d32; /* Koyu yeşil liste metni */

}

.feature-list li i{
    margin-right: 10px;
}


/* --- Butonlar --- */
.button-container {
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s ease;
}

.btn:active {
    transform: scale(0.98); /* Tıklama efekti */
}

.btn-orange {
    background-color: #e67e22; /* Turuncu buton */
}

.btn-green {
    background-color: #27ae60; /* Yeşil (WhatsApp) buton */
}

.btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: white;
}
.hizmet-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmet-listesi li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.hizmet-listesi li i {
    color: #27ae60;
    font-size: 18px;
}





.header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

/* Hamburger ikon */
.hamburger{
    width: 30px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span{
    display:block;
    height:3px;
    background:#1e8e3e; /* ikon rengi */
    margin:6px 0;
    transition:0.3s;
}

/* X animasyonu */
.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
    opacity:0;
}
.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* Menü */
.menu{
    position:absolute;
    top:37%;

    width:200px;
    background:#1f1f1f;
    border-radius:8px;

    right:44px;  /* hamburger genişliği kadar sola kaydır */

    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    z-index: 999;
}


/* Açık hali */
.menu.active{
    max-height:400px;
}

.menu a{
    display:block;
    padding:15px;
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #444;
}

.menu a:last-child{
    border-bottom:none;
}

.menu a:hover{
    background:#27ae60;
}