/* ORTAK STİLLER - Siverek Huzur File */
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Segoe UI',Arial,sans-serif;color:#222;background:#fff;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;}

:root{
  --green:#1a7a3c;
  --green-dark:#0e4f26;
  --green-light:#e8f5ee;
  --gold:#f4a200;
  --gray:#f8f9fa;
  --text:#444;
}

/* HEADER */
header{background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.09);position:sticky;top:0;z-index:999;}
.header-inner{max-width:1140px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:72px;}
.logo{display:flex;align-items:center;gap:10px;}
.logo-icon{width:44px;height:44px;background:var(--green);border-radius:10px;display:flex;align-items:center;justify-content:center;}
.logo-icon svg{width:26px;height:26px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.logo-text{display:flex;flex-direction:column;line-height:1.1;}
.logo-text strong{font-size:17px;color:var(--green);font-weight:800;}
.logo-text span{font-size:12px;color:#888;}
nav{display:flex;gap:6px;}
nav a{padding:8px 14px;border-radius:6px;font-size:15px;font-weight:500;color:#333;transition:background .2s,color .2s;}
nav a:hover,nav a.active{background:var(--green-light);color:var(--green);}
.header-cta{background:var(--green);color:#fff;padding:10px 22px;border-radius:8px;font-size:14px;font-weight:700;transition:background .2s;}
.header-cta:hover{background:var(--green-dark);}
.hamburger{display:none;font-size:26px;cursor:pointer;color:var(--green);border:none;background:none;}
.mobile-nav{display:none;flex-direction:column;background:#fff;border-top:1px solid #eee;padding:8px 0 16px;}
.mobile-nav a{padding:13px 24px;color:#333;font-size:16px;border-bottom:1px solid #f5f5f5;}
.mobile-nav a:last-child{border-bottom:none;}
.mobile-nav a.active{color:var(--green);font-weight:700;}

/* HERO */
.hero{background:linear-gradient(135deg,var(--green-dark) 0%,var(--green) 60%,#2d9955 100%);color:#fff;padding:90px 24px;display:flex;align-items:center;min-height:500px;}
.hero-inner{max-width:1140px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.hero h1{font-size:40px;font-weight:800;line-height:1.2;margin-bottom:18px;}
.hero h1 span{color:var(--gold);}
.hero p{font-size:17px;line-height:1.75;opacity:.93;margin-bottom:34px;}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;}
.btn-gold{background:var(--gold);color:#fff;padding:14px 30px;border-radius:8px;font-weight:700;font-size:16px;display:inline-flex;align-items:center;gap:8px;transition:background .2s;}
.btn-gold:hover{background:#d48c00;}
.btn-outline{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.7);padding:12px 28px;border-radius:8px;font-weight:600;font-size:16px;display:inline-flex;align-items:center;gap:8px;transition:background .2s;}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.hero-img-wrap{border-radius:18px;overflow:hidden;box-shadow:0 24px 64px rgba(0,0,0,.32);aspect-ratio:4/3;background:var(--green-dark) center/cover no-repeat;}

/* SECTION */
.sec{padding:80px 24px;}
.sec-gray{background:var(--gray);}
.sec-inner{max-width:1140px;margin:0 auto;}
.sec-head{text-align:center;margin-bottom:52px;}
.sec-head h2{font-size:32px;font-weight:800;color:var(--green);margin-bottom:12px;}
.sec-head p{font-size:17px;color:var(--text);max-width:620px;margin:0 auto;line-height:1.7;}
.sec-tag{display:inline-block;background:var(--green-light);color:var(--green);font-size:13px;font-weight:700;padding:5px 14px;border-radius:20px;margin-bottom:10px;letter-spacing:.5px;}

/* CARDS */
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.cards-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
.card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.07);transition:transform .25s,box-shadow .25s;}
.card:hover{transform:translateY(-5px);box-shadow:0 12px 32px rgba(0,0,0,.13);}
.card-img{aspect-ratio:16/9;background:#ddd center/cover no-repeat;}
.card-body{padding:24px;}
.card-icon{width:48px;height:48px;background:var(--green-light);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.card-icon svg{width:26px;height:26px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.card-body h3{font-size:18px;font-weight:700;color:var(--green);margin-bottom:8px;}
.card-body p{font-size:14px;color:var(--text);line-height:1.7;}
.card-link{display:inline-flex;align-items:center;gap:6px;color:var(--green);font-size:14px;font-weight:600;margin-top:14px;}
.card-link:hover{text-decoration:underline;}

/* STATS */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:0;}
.stat{background:#fff;border-radius:14px;padding:28px 20px;text-align:center;box-shadow:0 4px 16px rgba(0,0,0,.06);}
.stat .num{font-size:38px;font-weight:800;color:var(--green);line-height:1;}
.stat .lbl{font-size:14px;color:#666;margin-top:8px;}

/* CTA BANNER */
.cta-band{background:linear-gradient(135deg,var(--green-dark),var(--green));color:#fff;padding:72px 24px;text-align:center;}
.cta-band h2{font-size:32px;font-weight:800;margin-bottom:12px;}
.cta-band p{font-size:17px;opacity:.9;margin-bottom:36px;max-width:560px;margin-left:auto;margin-right:auto;}
.cta-band-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.btn-call{background:var(--gold);color:#fff;padding:16px 36px;border-radius:8px;font-weight:700;font-size:18px;display:inline-flex;align-items:center;gap:10px;}
.btn-call:hover{background:#d48c00;}
.btn-wa{background:#25d366;color:#fff;padding:16px 30px;border-radius:8px;font-weight:700;font-size:16px;display:inline-flex;align-items:center;gap:10px;}
.btn-wa:hover{background:#1ebe5a;}

/* FOOTER */
footer{background:#0a3d1e;color:#fff;padding:56px 24px 28px;}
.footer-inner{max-width:1140px;margin:0 auto;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:48px;margin-bottom:40px;}
.footer-brand p{font-size:14px;opacity:.75;line-height:1.8;margin-top:14px;}
.footer-col h4{font-size:15px;font-weight:700;margin-bottom:16px;color:var(--gold);}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul li a{font-size:14px;opacity:.75;transition:opacity .2s;}
.footer-col ul li a:hover{opacity:1;}
.footer-col p{font-size:14px;opacity:.75;line-height:1.8;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:22px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;}
.footer-bottom p{font-size:13px;opacity:.6;}

/* FLOAT */
.float-btns{position:fixed;bottom:24px;right:24px;display:flex;flex-direction:column;gap:12px;z-index:998;}
.float-btn{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 18px rgba(0,0,0,.25);transition:transform .2s;}
.float-btn:hover{transform:scale(1.1);}
.float-btn.phone{background:var(--green);}
.float-btn.wa{background:#25d366;}
.float-btn svg{width:26px;height:26px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

/* PAGE HERO (alt sayfalar) */
.page-hero{background:linear-gradient(135deg,var(--green-dark),var(--green));color:#fff;padding:56px 24px;text-align:center;}
.page-hero h1{font-size:36px;font-weight:800;margin-bottom:10px;}
.page-hero p{font-size:16px;opacity:.88;max-width:560px;margin:0 auto;}
.breadcrumb{display:flex;gap:8px;justify-content:center;margin-top:14px;font-size:14px;opacity:.75;}
.breadcrumb a{color:#fff;}
.breadcrumb span{opacity:.5;}

/* MOBILE */
@media(max-width:900px){
  .cards-3{grid-template-columns:1fr 1fr;}
  .stats{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:680px){
  nav,.header-cta{display:none;}
  .hamburger{display:block;}
  .hero-inner{grid-template-columns:1fr;}
  .hero-img-wrap{display:none;}
  .hero h1{font-size:28px;}
  .hero{padding:64px 20px;}
  .cards-3,.cards-2{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .sec{padding:56px 20px;}
  .footer-bottom{flex-direction:column;text-align:center;}
}
