/* Özerhisar - Site Stilleri */
:root{
  --red:#E30613;
  --red-dark:#B30000;
  --red-darker:#8E0000;
  --ink:#1a1a1a;
  --muted:#666;
  --bg:#fff;
  --gray:#f5f5f5;
  --gray-2:#eaeaea;
  --gray-3:#d9d9d9;
  --max:1200px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins','Segoe UI',system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:15px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* ---------- HEADER (transparent over hero) ---------- */
.site-header{
  background:transparent;
  position:absolute;top:0;left:0;right:0;z-index:50;
  border:0;
}
.site-header .bar{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 20px;max-width:var(--max);margin:0 auto;gap:24px;
}
.logo img{height:110px;width:auto}
/* On inner pages (no .hero), header sits over white */
body.inner .site-header{position:relative;background:#fff}
body.t-header .site-header{position:absolute;background:transparent}
.nav{display:flex;gap:28px;align-items:center}
.nav a{
  font-size:14px;font-weight:400;color:#222;
  position:relative;padding:6px 0;transition:color .2s;
}
.nav a:hover,.nav a.active{color:var(--red)}
.nav a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-4px;
  height:2px;background:var(--red);border-radius:2px;
}
.socials{display:flex;gap:14px;align-items:center}
.socials a{
  color:#222;font-size:16px;width:28px;height:28px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:color .2s;
}
.socials a:hover{color:var(--red)}
.menu-btn{display:none;font-size:24px;color:#222}

/* ---------- SUB HERO (page header) ---------- */
.sub-hero{
  position:relative;
  background:#fff;
  padding:40px 0 0;
  overflow:hidden;
  min-height:340px;
}
.sub-hero::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:170px;
  background:url('../img/milk-wave.svg') center bottom/100% 100% no-repeat;
  pointer-events:none;z-index:2;
}
.sub-hero .container{
  position:relative;z-index:3;
  display:flex;align-items:center;justify-content:center;flex-direction:column;
  text-align:center;min-height:260px;padding-top:40px;
}
.sub-hero h1{font-size:52px;font-weight:700;color:#222;letter-spacing:.3px}
.sub-hero .crumbs{color:#888;font-size:13px;margin-top:8px}
.sub-hero .mascot{
  position:absolute;right:6%;bottom:0;
  height:300px;width:auto;z-index:4;
}

/* ---------- PAGE HERO (full-width banner with header image) ---------- */
.page-hero{
  position:relative;width:100%;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  min-height:480px;display:flex;align-items:center;justify-content:center;
  text-align:center;color:#222;overflow:hidden;
}
.page-hero::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:120px;
  background:url('../img/milk-wave.svg') center bottom/100% 100% no-repeat;
  pointer-events:none;z-index:2;
}
.page-hero{min-height:420px;align-items:flex-start}
.page-hero .inner{position:relative;z-index:3;padding-top:160px}
.page-hero h1{font-size:56px;font-weight:700;color:#1a1a1a;letter-spacing:-1.5px}
.page-hero .crumbs{color:#666;font-size:14px;margin-top:6px;letter-spacing:.2px}

/* ---------- HERO (homepage) - büyük, ayran dalgalı, header'ın arkasına uzanır ---------- */
.hero{
  position:relative;background:#fff;overflow:hidden;
  min-height:780px;
  background-image:url('../img/hero-pc.png');
  background-size:cover;
  background-position:right top;
  background-repeat:no-repeat;
  margin-top:0;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#fff 0%,#fff 30%,rgba(255,255,255,.85) 48%,rgba(255,255,255,0) 65%);
  z-index:1;
}
.hero::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:200px;
  background:url('../img/milk-wave.svg') center bottom/100% 100% no-repeat;
  z-index:2;pointer-events:none;
}
.hero-inner{
  position:relative;z-index:3;
  max-width:var(--max);margin:0 auto;padding:170px 20px 220px;
  min-height:780px;
}
.hero-text{max-width:560px}
.hero-text .pre{font-size:22px;color:#333;font-weight:400;margin-bottom:6px}
.hero-text h1{
  font-size:60px;font-weight:700;line-height:1.05;color:#1a1a1a;
  margin-bottom:22px;letter-spacing:-1px;
}
.hero-text h1 .accent{color:var(--red);display:block}
.hero-text p{color:#444;font-size:16px;margin-bottom:32px;max-width:480px;line-height:1.55}
.hero-btns{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.btn-video{
  display:inline-flex;align-items:center;gap:14px;color:#222;font-weight:500;font-size:15px;
  background:none;border:0;padding:0;cursor:pointer;
}
.btn-video .play{
  width:48px;height:48px;border-radius:50%;border:1.5px solid #e0e0e0;
  display:flex;align-items:center;justify-content:center;color:#222;
  transition:all .2s;
}
.btn-video:hover .play{border-color:var(--red);color:var(--red)}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--red);color:#fff!important;
  padding:12px 26px;border-radius:30px;font-size:14px;font-weight:600;
  transition:all .2s;border:2px solid var(--red);
}
.btn:hover{background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-1px)}
.btn.outline{background:#fff;color:var(--red)!important}
.btn.outline:hover{background:var(--red);color:#fff!important}
.btn.sm{padding:8px 18px;font-size:13px}
.btn.ghost{background:#fff;color:var(--red)!important;border-color:#fff}

/* ---------- SECTIONS ---------- */
section{padding:70px 0}
.section-eyebrow{
  text-align:center;color:var(--red);
  font-size:12px;font-weight:500;letter-spacing:2px;
  text-transform:uppercase;margin-bottom:8px;
}
.section-title{
  text-align:center;font-size:34px;font-weight:700;
  color:#1a1a1a;margin-bottom:40px;
}
.section-title .accent{color:var(--red)}
.section-sub{text-align:center;color:#666;max-width:640px;margin:0 auto 40px}

/* ---------- NEWS (Haber Bülteni) ---------- */
.news-section{background:#fff;position:relative;padding:60px 0}
.news-grid{
  display:grid;grid-template-columns:.85fr 1.5fr;gap:60px;align-items:center;
}
.news-mascot{display:flex;justify-content:center}
.news-mascot img{max-height:420px;width:auto}
.news-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.news-head h2{font-size:34px;font-weight:700;color:var(--red)}
.news-head .all{
  display:inline-flex;align-items:center;gap:8px;
  border:1.5px solid var(--red);color:var(--red);
  padding:8px 18px;border-radius:20px;font-size:13px;font-weight:600;
}
.news-intro{color:#555;font-size:14px;margin-bottom:18px;line-height:1.6}
.news-list{display:flex;flex-direction:column;gap:12px}
.news-card{
  background:#fff;display:grid;grid-template-columns:90px 1fr;gap:14px;
  padding:10px;border-radius:10px;transition:all .2s;align-items:center;
}
.news-card:hover{background:#fafafa}
.news-card img{width:90px;height:90px;object-fit:cover;border-radius:10px}
.news-card h4{font-size:15px;font-weight:600;margin-bottom:4px;color:var(--red);line-height:1.3}
.news-card p{font-size:12px;color:#666;line-height:1.5}

/* ---------- HAKKIMIZDA BANNER ---------- */
.about-banner{padding:40px 0 60px;background:#fff}
.about-card{
  position:relative;
  background:url('../img/about-banner.png') center/contain no-repeat;
  border-radius:14px;
  padding:5% 11% 4% 39%;overflow:visible;
  aspect-ratio:3.572/1;
}
.about-card .photo{display:none}
.about-card .body{padding:0;position:relative;z-index:1}
.about-card .eyebrow{color:#333;font-size:14px;margin-bottom:4px;font-weight:400}
.about-card h3{font-size:28px;font-weight:700;color:var(--red);margin-bottom:12px;line-height:1.15;white-space:nowrap}
.about-card p{color:#444;font-size:13px;line-height:1.65;margin-bottom:16px}
.about-icons{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:14px}
.about-icons .it{display:flex;align-items:center;gap:10px;font-size:12.5px;font-weight:500;color:#222}
.about-icons .it img{width:30px;height:30px;object-fit:contain;flex-shrink:0}
.about-card .btn-dark{
  display:inline-flex;background:#1a1a1a;color:#fff!important;
  padding:10px 28px;border-radius:30px;font-size:13px;font-weight:500;
}
.about-card .btn-dark:hover{background:#000}
.about-card .seal{display:none}

/* ---------- PRODUCT TEASERS / CAROUSEL ---------- */
.prod-teasers{background:#fff;padding:50px 0}
.prod-row{display:grid;grid-template-columns:.7fr 2fr;gap:40px;align-items:center}
.prod-row .lead h2{font-size:42px;font-weight:700;color:var(--red);margin-bottom:14px;line-height:1}
.prod-row .lead p{color:#555;font-size:14px;margin-bottom:20px;line-height:1.6}
.prod-row .lead .btn{background:#fff;color:var(--red)!important;border:1.5px solid var(--red);padding:8px 24px;font-size:13px}
.prod-row .lead .btn:hover{background:var(--red);color:#fff!important}
.prod-carousel{position:relative;display:flex;align-items:center;gap:14px}
.prod-carousel .arrow{
  width:36px;height:36px;border-radius:50%;background:#fff;border:1px solid #eee;
  display:flex;align-items:center;justify-content:center;color:#999;flex-shrink:0;
  cursor:pointer;transition:all .2s;
}
.prod-carousel .arrow:hover{color:var(--red);border-color:var(--red)}
.prod-track{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;flex:1}
.prod-card{
  background:#fff;border:1px solid #eee;border-radius:14px;padding:20px 16px;
  text-align:center;transition:all .2s;box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.prod-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(0,0,0,.08)}
.prod-card .img{height:220px;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.prod-card .img img{max-height:100%;width:auto}
.prod-card h5{font-size:15px;font-weight:500;color:var(--red);margin-bottom:4px}
.prod-card .size{font-size:13px;color:#555}

/* ---------- JOURNEY (Lezzet Yolculuğu) ---------- */
.journey{background:#fff;position:relative;text-align:center;padding:80px 0}
.journey .pill{
  display:inline-block;border:1.5px solid var(--red);color:var(--red);
  padding:6px 22px;border-radius:20px;font-size:12px;font-weight:500;
  letter-spacing:2px;margin-bottom:14px;
}
.journey h2{font-size:46px;font-weight:700;color:#1a1a1a;margin-bottom:10px}
.journey h2 .accent{color:var(--red)}
.journey .sub{color:#555;font-size:15px;margin-bottom:50px}
.journey-imgs{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  align-items:end;margin-bottom:18px;
}
.journey-imgs .pic{height:180px;display:flex;align-items:flex-end;justify-content:center}
.journey-imgs .pic img{max-height:180px;width:auto;object-fit:contain}
.journey .steps{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  position:relative;
}
.step{position:relative;padding:0 8px}
.step .num{
  width:46px;height:46px;border-radius:50%;background:var(--red);color:#fff;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 22px;font-weight:600;font-size:18px;
}
.step .arrow-c{
  position:absolute;top:14px;left:calc(50% + 28px);width:calc(100% - 28px);
  height:18px;pointer-events:none;
}
.step:last-child .arrow-c{display:none}
.step h4{font-size:16px;font-weight:600;color:#1a1a1a;margin-bottom:14px}
.step p{font-size:13px;color:#555;line-height:1.7;font-weight:300}

/* ---------- SATIŞ NOKTALARI BIG ---------- */
.points-cta{
  position:relative;color:#222;padding:90px 0;
  background:#fff url('../img/satis-bg.webp') right center/auto 100% no-repeat;
  overflow:hidden;
}
.points-cta::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#fff 0%,#fff 30%,rgba(255,255,255,.85) 45%,rgba(255,255,255,0) 65%);
}
.points-cta .container{position:relative;z-index:1;max-width:var(--max)}
.points-cta .col{max-width:520px}
.points-cta .small{font-size:20px;color:#333;margin-bottom:6px;font-weight:400}
.points-cta .big{font-size:110px;font-weight:800;line-height:1;color:var(--red)}
.points-cta .lbl{font-size:38px;font-weight:700;color:#1a1a1a;margin-bottom:24px;line-height:1.1}
.points-cta p{color:#555;font-size:14px;line-height:1.7;margin-bottom:14px}
.btn-store,.points-cta .btn-store{
  display:inline-flex;align-items:center;gap:14px;background:var(--red);
  color:#fff!important;padding:10px 28px 10px 14px;border-radius:10px;
  font-size:14px;font-weight:500;margin-top:10px;
  box-shadow:0 6px 14px rgba(227,6,19,.25);
  transition:all .2s;
}
.btn-store:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-store .ic,.points-cta .btn-store .ic{
  width:30px;height:30px;background:transparent;border-radius:0;
  display:flex;align-items:center;justify-content:center;font-size:18px;color:#fff;
}

/* ---------- BAYILERIMIZ NEW ---------- */
.dealers-cta{background:#fff;padding:60px 0}
.dealers-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center}
.dealers-img{position:relative;border-radius:14px;overflow:hidden}
.dealers-img::before{
  content:"";position:absolute;top:10px;left:-10px;width:60px;height:80px;
  background:var(--red);border-radius:4px;z-index:0;
}
.dealers-img img{position:relative;z-index:1;width:100%;border-radius:10px;display:block}
.dealers-grid h2{font-size:48px;font-weight:700;color:var(--red);line-height:1.05;margin-bottom:18px}
.dealers-grid h2 span{color:#1a1a1a}
.dealers-grid p{color:#444;font-size:14.5px;line-height:1.7;margin-bottom:14px}

/* ---------- BLOG ---------- */
.blog-section{background:#fff;padding:70px 0;text-align:center}
.blog-section h2{font-size:38px;font-weight:700;color:var(--red);margin-bottom:30px}
.blog-wrap{position:relative;display:flex;align-items:center;gap:14px}
.blog-wrap .arrow{
  width:36px;height:36px;border-radius:50%;background:#fff;border:1px solid #eee;
  display:flex;align-items:center;justify-content:center;color:#999;flex-shrink:0;cursor:pointer;
}
.blog-wrap .arrow:hover{color:var(--red);border-color:var(--red)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;flex:1}
.blog-card{background:#fff;transition:all .2s;text-align:left}
.blog-card img{width:100%;height:220px;object-fit:cover;border-radius:14px;margin-bottom:18px}
.blog-card h4{font-size:18px;font-weight:600;margin-bottom:10px;color:#1a1a1a;line-height:1.3;text-align:center}
.blog-card p{font-size:13px;color:#999;line-height:1.6;text-align:center}

/* ---------- SUBSCRIBE BAR ---------- */
.subscribe{background:var(--red);color:#fff;padding:18px 0}
.subscribe .row{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.subscribe .left{display:flex;align-items:center;gap:14px;font-size:13px}
.subscribe .left .icon{font-size:22px}
.subscribe .left small{display:block;opacity:.85;font-size:11px;margin-top:3px}
.subscribe .left a{text-decoration:underline}
.subscribe .form{display:flex;gap:0;border-radius:30px;overflow:hidden;background:#fff;min-width:340px}
.subscribe input{
  flex:1;border:0;padding:12px 18px;font-size:14px;outline:none;color:#222;
}
.subscribe button{
  background:#fff;color:var(--red);font-weight:500;padding:0 22px;font-size:14px;
  border-radius:30px;margin:3px;
}

/* ---------- FOOTER ---------- */
.site-footer{background:#fff;padding:50px 0 18px;border-top:1px solid #f0f0f0}
.footer-grid{display:grid;grid-template-columns:1.1fr 1fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:30px}
.footer-logo img{height:90px;margin-bottom:18px}
.footer-logo .socials{margin-top:14px;color:#222}
.footer-col h5{
  font-size:14px;font-weight:600;color:#1a1a1a;margin-bottom:14px;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:8px}
.footer-col a{color:#444;font-size:13px;transition:color .2s}
.footer-col a:hover{color:var(--red)}
.footer-contact li{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:#444;margin-bottom:10px}
.footer-contact i{color:#1a1a1a;margin-top:3px;width:14px;flex-shrink:0}
.footer-bottom{
  border-top:1px solid #eee;padding-top:16px;text-align:center;
  font-size:12px;color:#888;
}
.footer-bottom .brand{color:var(--red);font-weight:600}

/* ---------- FORM ---------- */
.form-section{padding:60px 0;background:#fff}
.form-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:30px}
.form-grid .full{grid-column:1/-1}
.field{position:relative}
.field input,.field textarea,.field select{
  width:100%;background:#ededed;border:0;padding:14px 18px;
  border-radius:6px;font-size:14px;color:#222;outline:none;
  font-family:inherit;
}
.field textarea{resize:vertical;min-height:120px}
.field input:focus,.field textarea:focus{background:#e3e3e3}
.form-submit{text-align:center;margin-top:24px}

/* ---------- MAP & TABLES ---------- */
.tr-map{max-width:900px;margin:30px auto;display:block}
.dt-table{width:100%;border-collapse:collapse;margin-top:20px;font-size:13px}
.dt-table th{background:#fafafa;text-align:left;padding:12px;color:#333;font-weight:600;border-bottom:1px solid #eee}
.dt-table td{padding:12px;border-bottom:1px solid #f0f0f0;color:#444;vertical-align:top}
.dt-table tr:hover{background:#fafafa}
.tag{display:inline-block;background:var(--red);color:#fff;padding:3px 10px;border-radius:20px;font-size:11px}
.table-tools{display:flex;justify-content:space-between;align-items:center;gap:12px;margin:14px 0;font-size:13px;color:#666}
.table-tools select,.table-tools input{padding:8px 12px;border:1px solid #ddd;border-radius:6px;font-size:13px}
.pagination{display:flex;gap:6px;justify-content:flex-end;margin-top:14px}
.pagination button{padding:6px 12px;border:1px solid #ddd;border-radius:6px;color:#666;font-size:13px;background:#fff}
.pagination button.active{background:var(--red);color:#fff;border-color:var(--red)}

/* ---------- PRODUCT GRID ---------- */
.cat-pills{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:900px;margin:0 auto 40px}
.cat-pills a{display:block}
.cat-pills img{width:100%}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.product-card{
  background:#fff;border:1px solid #eee;border-radius:12px;padding:18px;
  text-align:center;transition:all .2s;
}
.product-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.08);transform:translateY(-3px);border-color:var(--red)}
.product-card .img{height:200px;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.product-card .img img{max-height:100%;width:auto;object-fit:contain}
.product-card h5{font-size:13px;font-weight:600;color:#222;margin-bottom:4px}
.product-card .meta{font-size:11px;color:#999}

/* ---------- PRODUCT DETAIL ---------- */
.pd-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;margin:40px 0}
.pd-img{background:#fafafa;border-radius:14px;padding:40px;display:flex;align-items:center;justify-content:center;min-height:380px}
.pd-img img{max-height:340px;width:auto}
.pd-info h2{font-size:30px;font-weight:700;color:#222;margin-bottom:6px}
.pd-info .size{color:var(--red);font-weight:600;margin-bottom:18px}
.pd-info p{color:#555;margin-bottom:20px}
.pd-cols{display:grid;grid-template-columns:1fr 1fr 1fr;gap:30px;margin-top:30px}
.pd-cols h4{color:var(--red);font-size:15px;font-weight:500;margin-bottom:10px}
.pd-cols ul{list-style:disc;padding-left:18px;color:#555;font-size:13px;line-height:1.8}
.pd-table{width:100%;border-collapse:collapse}
.pd-table td{padding:7px 0;border-bottom:1px dashed #ddd;font-size:13px}
.pd-table td:last-child{text-align:right;font-weight:600}

/* ---------- HUKUKI (Accordion) ---------- */
.accordion{max-width:920px;margin:30px auto;background:#fafafa;border:1px solid #eee;border-radius:10px;padding:20px}
.acc-item{border-bottom:1px solid #e8e8e8}
.acc-item:last-child{border-bottom:0}
.acc-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 8px;cursor:pointer;font-weight:600;font-size:15px;color:#222;
}
.acc-head .plus{color:var(--red);font-size:18px;width:20px;text-align:center}
.acc-body{padding:4px 8px 18px;font-size:13px;color:#555;line-height:1.7;display:none}
.acc-item.open .acc-body{display:block}
.acc-item.open .plus::before{content:"−"}
.acc-item .plus::before{content:"+"}

/* ---------- HAKKIMIZDA ---------- */
.about-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:40px;align-items:start}
.about-grid h2{font-size:34px;font-weight:700;color:#222;margin-bottom:24px;line-height:1.15}
.about-grid h2 .accent{color:var(--red);display:block}
.about-grid p{color:#555;margin-bottom:14px;font-size:14px}
.about-photo{background:#222;border-radius:10px;min-height:280px;display:flex;align-items:center;justify-content:center;padding:30px;text-align:center;color:#bbb;font-size:13px;position:relative;overflow:hidden}
.about-photo .seal{position:absolute;top:20px;right:20px;width:80px;height:80px;border-radius:50%;background:url('../img/wax-seal.svg') center/contain no-repeat;opacity:.9}
.values{margin-top:60px}
.values h3{font-size:30px;font-weight:700;color:#222;margin-bottom:6px}
.values h3 .accent{color:var(--red)}
.value-item{padding:22px 0;border-bottom:1px solid #f0f0f0}
.value-item:last-child{border-bottom:0}
.value-item h4{font-size:17px;font-weight:600;color:#222;margin-bottom:8px}
.value-item p{color:#555;font-size:14px}

/* ---------- ILETISIM ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:40px;margin:40px 0}
.contact-card h2{font-size:24px;font-weight:700;color:var(--red);margin-bottom:18px;line-height:1.25}
.contact-card .row{margin-bottom:14px;font-size:14px}
.contact-card .row b{display:block;color:#222;margin-bottom:2px}
.contact-card .row span{color:#555}
.contact-card .socials{margin-top:14px;color:var(--red);font-size:18px;gap:10px}
.contact-map{border-radius:10px;overflow:hidden;border:1px solid #eee;min-height:320px}
.contact-map iframe{width:100%;height:100%;border:0;min-height:320px}

.tri-cta{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px}
.tri-cta a{
  background:var(--red);color:#fff!important;border-radius:10px;
  padding:24px;display:flex;align-items:center;gap:14px;transition:all .2s;
}
.tri-cta a:hover{background:var(--red-dark);transform:translateY(-3px)}
.tri-cta .ic{
  width:46px;height:46px;background:rgba(255,255,255,.18);border-radius:8px;
  display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;
}
.tri-cta h4{font-size:15px;font-weight:500}

/* ---------- BAYI BAŞVURU ---------- */
.bb-intro{max-width:920px;margin:30px auto}
.bb-intro h2{font-size:24px;color:var(--red);font-weight:700;margin-bottom:14px}
.bb-intro h3{font-size:18px;color:var(--red);font-weight:700;margin:22px 0 10px}
.bb-intro p,.bb-intro li{color:#555;font-size:14px;line-height:1.7;margin-bottom:10px}
.bb-intro ul{padding-left:20px;margin-bottom:14px}
.bb-form{max-width:920px;margin:20px auto}
.bb-form fieldset{border:0;margin-bottom:24px}
.bb-form legend{font-size:15px;font-weight:500;color:var(--red);margin-bottom:14px;padding:8px 0;border-bottom:1px solid #eee;width:100%}
.bb-form .row2{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.bb-form .row3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;margin-bottom:14px}
.bb-form label{display:block;font-size:13px;color:#555;margin-bottom:6px}
.bb-form input,.bb-form select,.bb-form textarea{
  width:100%;background:#f4f4f4;border:0;padding:11px 14px;
  border-radius:6px;font-size:14px;color:#222;font-family:inherit;outline:none;
}
.bb-form .check{display:flex;gap:18px;color:#555;font-size:13px;align-items:center}
.bb-form .check label{display:flex;align-items:center;gap:6px;margin:0}

/* ---------- MOBILE ---------- */
@media (max-width:980px){
  .nav,.socials{display:none}
  .menu-btn{display:inline-flex}
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-text h1{font-size:34px}
  .hero-img{height:340px}
  .news-grid,.prod-teasers .lead,.dealers-grid,.about-grid,.pd-grid,.contact-grid{grid-template-columns:1fr}
  .prod-buttons,.cat-pills{grid-template-columns:1fr}
  .blog-grid,.product-grid,.tri-cta,.pd-cols{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .journey .steps{grid-template-columns:1fr 1fr}
  .journey .steps::before{display:none}
  .points-cta .big{font-size:64px}
  .sub-hero h1{font-size:32px}
  .sub-hero .mascot{height:130px;right:5%}
  .bb-form .row2,.bb-form .row3{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .subscribe .form{min-width:0;width:100%}
}
@media (max-width:560px){
  .product-grid,.blog-grid,.tri-cta,.pd-cols,.footer-grid{grid-template-columns:1fr}
  .hero-text h1{font-size:28px}
  .section-title{font-size:24px}
}
