/* ===== Tasarım Değişkenleri ===== */
:root{
  --navy:#0c2342; --navy-light:#16335c; --gold:#e8b04b; --gold-dark:#d49a30;
  --cream:#fdf6e9; --whatsapp:#25d366; --bg:#fff; --bg-alt:#f4f5f7;
  --text:#1a2740; --text-muted:#5a6680; --shadow:0 8px 30px rgba(12,35,66,.08);
  --radius:16px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Poppins',sans-serif;color:var(--text);background:var(--bg);line-height:1.55}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{width:min(1200px,92%);margin-inline:auto}

/* ===== Buton ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  padding:.85rem 1.6rem;border:none;border-radius:8px;font-weight:600;font-size:.9rem;
  cursor:pointer;transition:transform .15s,box-shadow .2s,background .2s;font-family:inherit}
.btn:hover{transform:translateY(-2px)}
.btn--gold{background:var(--gold);color:var(--navy)}
.btn--gold:hover{background:var(--gold-dark)}
.btn--navy{background:var(--navy);color:#fff}
.btn--navy:hover{background:var(--navy-light)}
.btn--wa{background:var(--whatsapp);color:#fff;font-size:1rem;padding:1rem 1.8rem}
.btn--block{width:100%}

/* ===== Marka / Logo ===== */
.brand{display:inline-flex;align-items:center;gap:.6rem}
.brand__mark{width:40px;height:40px;display:grid;place-items:center;border:2px solid var(--gold);
  color:var(--gold);font-weight:800;font-size:1.3rem;border-radius:6px;line-height:1}
.brand__text{display:flex;flex-direction:column;font-weight:800;font-size:1.35rem;letter-spacing:1px;line-height:1}
.brand__text small{font-size:.6rem;letter-spacing:4px;font-weight:500;opacity:.8}
.brand--sm .brand__mark{width:30px;height:30px;font-size:1rem}
.brand--sm .brand__text{font-size:1rem}
.brand--light{color:#fff}.brand--light .brand__mark{border-color:var(--gold);color:var(--gold)}

/* ===== Header ===== */
.header{position:sticky;top:0;z-index:100;background:var(--navy);color:#fff;box-shadow:0 2px 12px rgba(0,0,0,.15)}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.8rem 0}
.header__center{display:flex;gap:1.5rem}
.header__badge{display:flex;flex-direction:column;align-items:center;line-height:1.2;text-align:center}
.header__badge strong{font-size:.95rem}.header__badge span{font-size:.7rem;opacity:.85}
.header__badge--gold strong,.header__badge--gold span{color:var(--gold)}
.header__right{display:flex;align-items:center;gap:1rem}
.header__phone{display:flex;flex-direction:column;text-align:right;line-height:1.2}
.header__phone-num{font-weight:700;font-size:1rem}.header__phone-sub{font-size:.7rem;opacity:.8}
.header__wa{white-space:nowrap}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.3rem}
.hamburger span{width:26px;height:3px;background:#fff;border-radius:2px;transition:.3s}
.hamburger.active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.mobile-nav{display:none;flex-direction:column;gap:.8rem;padding:1rem 4%;background:var(--navy-light)}
.mobile-nav.open{display:flex}
.mobile-nav a{padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.1)}
.mobile-nav__phone{font-weight:700;color:var(--gold)}

/* ===== Hero ===== */
.hero{background-image: url("../img/header.png");background-size: cover;background-position: center;background-repeat: no-repeat;padding:3.5rem 0;position:relative;overflow:hidden}
.hero__inner{display:grid;grid-template-columns:1.3fr 1fr;gap:3rem;align-items:start}
.hero__title{font-size:2.6rem;font-weight:800;color:var(--navy);line-height:1.1}
.hero__title span{display:block;color:var(--navy)}
.hero__desc{margin:1.2rem 0 2rem;color:var(--text-muted);font-size:1.05rem;max-width:520px}
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-bottom:2rem}
.feature{text-align:center}
.feature__icon{width:54px;height:54px;margin:0 auto .6rem;display:grid;place-items:center;
  background:var(--navy);color:var(--gold);border-radius:12px;font-size:1.4rem}
.feature span{font-size:.7rem;font-weight:600;color:var(--navy);letter-spacing:.3px}
.hero__trust{display:flex;align-items:center;gap:.8rem;flex-wrap:wrap}
.hero__trust-sep{color:#ccc;font-size:1.5rem}
.hero__trust-allianz{color:var(--navy);font-size:1.4rem;font-weight:800}
.hero__trust-text{color:var(--text-muted);font-size:.9rem}

/* ===== Teklif Formu ===== */
.quote-card{background:var(--navy);color:#fff;border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow)}
.quote-card__title{font-size:1.6rem;text-align:center;color:var(--gold);font-weight:700}
.quote-card__sub{text-align:center;opacity:.85;margin:.3rem 0 1.4rem;font-size:.9rem}
.quote-form{display:flex;flex-direction:column;gap:.9rem}
.field{display:flex;align-items:center;background:#fff;border-radius:10px;padding:0 .9rem;overflow:hidden}
.field__icon{font-size:1rem;opacity:.6}
.field input,.field select{flex:1;border:none;outline:none;padding:.9rem .7rem;font-size:.95rem;font-family:inherit;color:var(--text);background:transparent}
.field select{cursor:pointer}
.kvkk{display:flex;align-items:flex-start;gap:.5rem;font-size:.72rem;opacity:.85}
.kvkk input{margin-top:3px}
.quote-form__success{background:rgba(37,211,102,.15);border:1px solid var(--whatsapp);color:#bff5d4;
  padding:.7rem;border-radius:8px;font-size:.85rem;text-align:center}

/* ===== Bölüm Başlığı ===== */
.section-title{text-align:center;margin:0 0 2.5rem;font-size:1.7rem;color:var(--navy);
  display:flex;align-items:center;justify-content:center;gap:1rem;font-weight:700}
.section-title::before,.section-title::after{content:"";height:2px;width:60px;background:var(--gold)}

/* ===== Ürünler ===== */
.products{padding:4rem 0;background:var(--bg)}
.products__grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.2rem}
.product-card{background:#fff;border:1px solid #eef0f4;border-radius:var(--radius);padding:1.4rem 1rem;
  display:flex;flex-direction:column;gap:.9rem;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s}
.product-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(12,35,66,.14)}
.product-card__icon{width:60px;height:60px;margin:0 auto;display:grid;place-items:center;
  background:var(--navy);color:#fff;border-radius:50%;font-size:1.6rem}
.product-card h3{text-align:center;font-size:.92rem;color:var(--navy);min-height:2.6em;font-weight:700}
.product-card__list{display:flex;flex-direction:column;gap:.5rem;font-size:.8rem;color:var(--text-muted);flex:1}
.product-card__list li{padding-left:1.1rem;position:relative}
.product-card__list li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:700}
.gift{background:var(--cream);border-radius:10px;padding:.8rem;text-align:center;font-size:.82rem}
.gift__tag{font-weight:700;color:var(--navy);font-size:.75rem}
.gift p{margin-top:.3rem;color:var(--text-muted)}.gift strong{color:var(--navy)}
.product-card__link{text-align:center;font-size:.72rem;font-weight:600;color:var(--text-muted);letter-spacing:.5px}
.product-card__link:hover{color:var(--gold-dark)}

/* ===== Hediye Çeki ===== */
.gifts{background:var(--bg-alt);padding:4rem 0}
.gifts__inner{display:grid;grid-template-columns:1.6fr 1fr;gap:3rem;align-items:center}
.gifts__left h2{font-size:1.7rem;color:var(--navy);margin-bottom:1rem;font-weight:800}
.gifts__left p{color:var(--text-muted);margin-bottom:1.5rem;max-width:520px}
.gifts__brands{display:flex;gap:1.5rem;margin-bottom:1.5rem;flex-wrap:wrap}
.gift-brand{display:flex;flex-direction:column;font-weight:800;color:var(--navy);font-size:1.4rem}
.gift-brand small{font-size:.65rem;font-weight:500;opacity:.7}
.gift-brand--green{color:#00a651}
.gifts__cats{display:flex;gap:1.2rem;flex-wrap:wrap}
.gifts__cats span{display:flex;flex-direction:column;align-items:center;font-size:1.6rem;color:var(--navy)}
.gifts__cats small{font-size:.7rem;color:var(--text-muted);margin-top:.2rem}
.gifts__right{background:#fff;padding:2rem;border-radius:var(--radius);box-shadow:var(--shadow)}
.gifts__right h3{color:var(--navy);margin-bottom:.6rem;font-weight:700}
.gifts__right p{color:var(--text-muted);font-size:.9rem;margin-bottom:1.2rem}
.gifts__charities{display:flex;flex-direction:column;gap:.7rem}
.gifts__charities span{background:var(--bg-alt);padding:.7rem 1rem;border-radius:10px;font-weight:600;font-size:.9rem;color:var(--navy)}

/* ===== Avantaj Şeridi ===== */
.strip{color:#fff;padding:2.5rem 0;}
.strip__grid{background:var(--navy);display:grid;grid-template-columns:repeat(4,1fr);gap:2rem; border-radius: 20px}
.strip__item{display:flex;gap:1rem;align-items:flex-start; padding: 40px 40px 40px 40px;}
.strip__icon{font-size:1.8rem;color:var(--gold)}
.strip__item strong{display:block;color:var(--gold);font-size:.92rem;margin-bottom:.3rem}
.strip__item p{font-size:.82rem;opacity:.85}

/* ===== Footer ===== */
.footer{background:var(--navy);color:#fff;padding-top:3rem}
.footer__grid{display:grid;grid-template-columns:1.2fr 1.4fr 1fr 1.2fr;gap:2rem;padding-bottom:2.5rem}
.footer__brand p{margin-top:1rem;font-weight:600;opacity:.9}
.footer__col p{font-size:.85rem;opacity:.85;margin-bottom:.8rem;line-height:1.5}
.footer__col a{color:var(--gold)}
.footer__col>a{display:block;font-size:.85rem;margin-bottom:.7rem;color:#fff;opacity:.85}
.footer__col>a:hover{opacity:1;color:var(--gold)}
.footer__cta{display:flex;align-items:center;justify-content:center}
.footer__bottom{background:rgba(0,0,0,.25);padding:1rem 0;text-align:center;font-size:.8rem;opacity:.8}

/* ===== Sabit Butonlar ===== */
.fab-wa{position:fixed;bottom:24px;right:24px;width:58px;height:58px;background:var(--whatsapp);
  color:#fff;border-radius:50%;display:grid;place-items:center;font-size:1.6rem;z-index:200;
  box-shadow:0 6px 20px rgba(37,211,102,.5);animation:pulse 2s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)}70%{box-shadow:0 0 0 16px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}
.to-top{position:fixed;bottom:24px;left:24px;width:46px;height:46px;border:none;border-radius:50%;
  background:var(--navy);color:#fff;font-size:1.3rem;cursor:pointer;opacity:0;visibility:hidden;
  transition:.3s;z-index:200}
.to-top.show{opacity:1;visibility:visible}

/* ===== Scroll Animasyonu ===== */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease;}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ============================================ */
/* ===== RESPONSIVE / MOBİL UYUM ===== */
/* ============================================ */

/* Tablet */
@media (max-width:1024px){
  .header__center{display:none;}
  .hero__inner{grid-template-columns:1fr;gap:2.5rem;}
  .hero__title{font-size:2.2rem}
  .products__grid{grid-template-columns:repeat(3,1fr)}
  .gifts__inner{grid-template-columns:1fr;gap:2rem}
  .strip__grid{grid-template-columns:repeat(2,1fr);gap:1.5rem;}
  .footer__grid{grid-template-columns:1fr 1fr}
}

/* Mobil */
@media (max-width:680px){
  .header__right{display:none}
  .hamburger{display:flex}
  .hero{padding:2.5rem 0;background-image: url("../img/header.png");background-size: cover;background-position: center;background-repeat: no-repeat;}
  .hero__title{font-size:1.8rem}
  .hero__desc{font-size:.95rem}
  .features{grid-template-columns:repeat(2,1fr);gap:1.2rem}
  .section-title{font-size:1.3rem}
  .section-title::before,.section-title::after{width:24px}
  .products{padding:3rem 0}
  .products__grid{grid-template-columns:1fr;gap:1.4rem}
  .product-card h3{min-height:auto}
  .strip__grid{grid-template-columns:1fr;gap:1.4rem}
  .footer__grid{grid-template-columns:1fr;gap:1.8rem;text-align:center}
  .footer__brand .brand,.gifts__cats,.gifts__brands,.hero__trust{justify-content:center}
  .footer__cta{margin-top:.5rem}
  .quote-card{padding:1.5rem}
  .fab-wa{width:52px;height:52px;bottom:18px;right:18px}
  .to-top{bottom:18px;left:18px}
}

/* Çok küçük ekran */
@media (max-width:380px){
  .hero__title{font-size:1.6rem}
  .feature span{font-size:.62rem}
}


/*MODAL YAPISI*/

/* ===== Modal ===== */
.modal-overlay{position:fixed;inset:0;background:rgba(12,35,66,.65);z-index:500;
  display:flex;align-items:center;justify-content:center;padding:1.5rem;
  opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.modal-overlay.active{opacity:1;visibility:visible}
.modal{background:#fff;border-radius:var(--radius);padding:2.2rem 2rem 2rem;
  width:100%;max-width:560px;max-height:90vh;overflow-y:auto;position:relative;
  transform:translateY(20px);transition:transform .3s}
.modal-overlay.active .modal{transform:translateY(0)}
.modal__close{position:absolute;top:1rem;right:1rem;width:34px;height:34px;border:none;
  background:var(--bg-alt);border-radius:50%;cursor:pointer;font-size:1rem;
  display:grid;place-items:center;color:var(--text-muted);transition:background .2s,color .2s}
.modal__close:hover{background:var(--navy);color:#fff}
.modal__body{display:flex;flex-direction:column;gap:1rem}
.modal__icon{width:64px;height:64px;margin:0 auto;display:grid;place-items:center;
  background:var(--navy);border-radius:50%;font-size:1.8rem}
.modal__body h2{text-align:center;color:var(--navy);font-size:1.4rem;font-weight:800}
.modal__sub{text-align:center;color:var(--text-muted);font-size:.9rem}
.modal__list{display:flex;flex-direction:column;gap:.7rem;font-size:.88rem;color:var(--text-muted)}
.modal__list li{padding-left:1.2rem;position:relative;line-height:1.5}
.modal__list li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:700}
.modal__list strong{color:var(--text)}
.modal__gift{background:var(--cream);border-radius:10px;padding:.9rem 1rem;font-size:.85rem;
  color:var(--text-muted);text-align:center}
.modal__gift strong{color:var(--navy)}
.modal__cta{margin-top:.4rem}

@media(max-width:480px){
  .modal{padding:1.8rem 1.2rem 1.5rem}
  .modal__body h2{font-size:1.2rem}
}

