/* =========================
   RESET (SADE – GÜVENLI)
========================= */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}





/* A11Y – Screen reader only label */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* A11Y – Keyboard focus visible */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{
  outline:3px solid #ff7a18;
  outline-offset:2px;
}

/* A11Y – Keyboard focus visible (modern browsers) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:3px solid #ff7a18;
  outline-offset:2px;
}




/* =========================
   HERO – STABIL & LCP SAFE
========================= */

.home-hero{
  position:relative;
  padding:60px 0;
  overflow:hidden;
}

/* GRADIENT */
.home-hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    90deg,
    rgba(8,36,63,.95) 0%,
    rgba(8,36,63,.85) 50%,
    rgba(8,36,63,.55) 100%
  );
}

/* CONTAINER */
.home-hero__container{
  position:relative;
  z-index:2;
  max-width:1200px;
  width:92%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
}

/* =========================
   CONTENT (LCP = H1)
========================= */

.home-hero__content{
  flex:1;
  color:#fff;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.hero-badges span{
  background:rgba(255,255,255,.14);
  padding:6px 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}

.home-hero__content h1{
  font-size:38px;
  font-weight:900;
  line-height:1.15;
  margin-bottom:14px;
}

.home-hero__content p{
  font-size:16px;
  line-height:1.6;
  max-width:560px;
  opacity:.95;
}

/* =========================
   BUTTONS (FIXED)
========================= */

.hero-buttons{
  display:flex;
  gap:14px;
  margin-top:20px;
  flex-wrap:wrap;
}

/* BUTON YOKSA TAMAMEN GİZLE */
.hero-buttons:not(:has(a)){
  display:none;
}

.btn-primary{
  background:#e66a10;
  color:#ffffff;
  padding:14px 26px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}



.btn-outline{
  border:2px solid rgba(255,255,255,.75);
  color:#fff;
  padding:12px 24px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}

/* TRUST */
.hero-trust{
  margin-top:18px;
  font-size:14px;
  opacity:.9;
}

/* =========================
   HERO IMAGE – LCP DIŞI
========================= */

.home-hero__image{
  flex:0 0 420px;
  max-width:420px;
}

.home-hero__image img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:420 / 520;   /* CLS KİLİT */
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}

/* =========================
   MOBIL – PERFORMANS MODU
========================= */

@media (max-width:768px){

  .home-hero{
    padding:40px 0;
  }

  .home-hero__container{
    flex-direction:column;
    text-align:center;
  }

  /* MOBİLDE GÖRSEL YOK */
  .home-hero__image{
    display:none;
  }

  .home-hero__content h1{
    font-size:28px;
  }

  .home-hero__content p{
    font-size:15px;
  }
}








/* =========================
   TRUST + STATS STRIP
========================= */

.home-trust-stats{
  background:#ffffff;
  border-top:1px solid #eef1f5;
  border-bottom:1px solid #eef1f5;
  padding:48px 0;
}

.home-trust-stats .container{
  max-width:1100px;
  width:92%;
  margin:auto;
}

/* TRUST LINE */

.trust-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  margin-bottom:36px;
}

.trust-icon{
  font-size:16px;
}

.trust-line p{
  font-size:14px;
  line-height:1.6;
  color:#333;
}

.trust-line strong{
  color:#0b2540;
  font-weight:700;
}

/* STATS GRID */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.stat-box{
  background:#ffffff;
  border:1px solid #e6ebf1;
  border-radius:14px;
  padding:26px 18px;
  text-align:center;
}

.stat-box strong{
  display:block;
  font-size:22px;
  font-weight:900;
  color:#0b2540;
  margin-bottom:6px;
}

.stat-box span{
  font-size:14px;
  color:#555;
}

/* MOBİL */

@media(max-width:900px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .stats-grid{
    grid-template-columns:1fr;
  }

  .trust-line{
    flex-direction:column;
    gap:6px;
  }
}










/* =========================
   HİZMETLERİMİZ – INTRO
========================= */

.home-services-intro{
  padding:80px 0;
  background:#ffffff;
}

.home-services-intro .container{
  max-width:1100px;
}

/* ÜST ETİKET */
.section-tag{
  display:inline-block;
  color:#ff7a18;
  font-weight:800;
  font-size:13px;
  letter-spacing:.8px;
  margin-bottom:12px;
}

/* BAŞLIK */
.home-services-intro h2{
  font-size:32px;
  font-weight:900;
  line-height:1.25;
  color:#08243f;
  margin-bottom:20px;
}

/* AÇIKLAMA */
.services-desc{
  font-size:16px;
  line-height:1.7;
  color:#333;
  max-width:900px;
  margin-bottom:28px;
}

/* GÜVEN KUTUSU */
.services-checklist{
  background:#f8fafc;
  border:1px solid #e5ebf1;
  border-radius:14px;
  padding:26px 28px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

/* YEŞİL TİKLİ SATIR */
.check-item{
  position:relative;
  padding-left:36px;
  font-size:15px;
  color:#1f2937;
  font-weight:500;
}

/* YEŞİL DAİRE */
.check-item::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:18px;
  height:18px;
  background:#16a34a;
  border-radius:50%;
}

/* BEYAZ TİK (CSS) */
.check-item::after{
  content:"";
  position:absolute;
  left:6px;
  top:8px;
  width:5px;
  height:9px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
}

/* MOBİL */
@media(max-width:768px){
  .home-services-intro{
    padding:60px 0;
  }

  .home-services-intro h2{
    font-size:24px;
  }

  .services-desc{
    font-size:15px;
  }
}














/* =========================
   HOME SUCCESS MINI
========================= */

.home-success-mini{
  padding:70px 0;
  background:#f6f8fb;
}

.home-success-mini .container{
  max-width:1100px;
  width:92%;
  margin:auto;
}

.success-head{
  text-align:center;
  margin-bottom:40px;
}

.mini-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  color:#0b5ed7;
  margin-bottom:10px;
}

.success-head h2{
  font-size:30px;
  font-weight:900;
  color:#08243f;
  margin-bottom:10px;
}

.success-head p{
  font-size:15.5px;
  color:#444;
  max-width:760px;
  margin:auto;
  line-height:1.6;
}

.success-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.success-card{
  background:#fff;
  border:1px solid #e5ebf1;
  border-radius:14px;
  padding:24px 22px;
}

.success-card strong{
  display:block;
  font-size:16px;
  font-weight:800;
  color:#08243f;
  margin-bottom:4px;
}

.success-card span{
  display:block;
  font-size:13px;
  color:#6b7280;
  margin-bottom:10px;
}

.success-card p{
  font-size:14.5px;
  line-height:1.6;
  color:#333;
}

.success-cta{
  text-align:center;
  margin-top:36px;
}

.success-cta a{
  display:inline-block;
  padding:12px 28px;
  border:1px solid #0b5ed7;
  color:#0b5ed7;
  text-decoration:none;
  border-radius:8px;
  font-weight:700;
  transition:.25s;
}

.success-cta a:hover{
  background:#0b5ed7;
  color:#fff;
}

/* MOBILE */

@media(max-width:900px){
  .success-grid{
    grid-template-columns:1fr;
  }

  .success-head h2{
    font-size:26px;
  }
}




















/* =========================
   HOME ADVANTAGES
========================= */

.home-advantages{
  padding:60px 0;
  background:#ffffff;
}

.home-advantages .container{
  max-width:1100px;
  width:92%;
  margin:auto;
  text-align:center;
}

.home-advantages h2{
  font-size:30px;
  font-weight:900;
  color:#08243f;
  margin-bottom:42px;
}

/* GRID */

.adv-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.adv-box{
  background:#f6f8fb;
  border:1px solid #e6ebf1;
  border-radius:16px;
  padding:32px 22px;
}

.adv-icon{
  font-size:30px;
  margin-bottom:14px;
}

.adv-box h3{
  font-size:18px;
  font-weight:800;
  color:#08243f;
  margin-bottom:10px;
}

.adv-box p{
  font-size:14.5px;
  line-height:1.6;
  color:#444;
}

/* MOBİL */

@media(max-width:992px){
  .adv-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .adv-grid{
    grid-template-columns:1fr;
  }

  .home-advantages h2{
    font-size:24px;
  }
}











/* =========================
   HOME SERVICES – SEO CORE
========================= */

.home-services{
  padding:64px 0;
  background:#f6f8fb;
}

.home-services .container{
  max-width:1100px;
  width:92%;
  margin:auto;
  text-align:center;
}

.home-services h2{
  font-size:30px;
  font-weight:900;
  color:#08243f;
  margin-bottom:12px;
}

.services-intro{
  max-width:760px;
  margin:0 auto 46px;
  font-size:15.5px;
  line-height:1.65;
  color:#333;
}

/* GRID */

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.service-card{
  background:#ffffff;
  border:1px solid #e6ebf1;
  border-radius:16px;
  padding:30px 22px;
  text-align:left;
  text-decoration:none;
  transition:all .25s ease;
}

.service-card h3{
  font-size:18px;
  font-weight:800;
  color:#08243f;
  margin-bottom:8px;
}

.service-card p{
  font-size:14.5px;
  line-height:1.6;
  color:#444;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

/* MOBİL */

@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .home-services h2{
    font-size:24px;
  }

  .services-intro{
    font-size:14.5px;
  }
}










/* =========================
   HOME SECTORS & OSB
========================= */

.home-sectors{
  padding:64px 0;
  background:#ffffff;
}

.home-sectors .container{
  max-width:1100px;
  width:92%;
  margin:auto;
  text-align:center;
}

.home-sectors h2{
  font-size:30px;
  font-weight:900;
  color:#08243f;
  margin-bottom:14px;
}

.sectors-intro{
  max-width:820px;
  margin:0 auto 44px;
  font-size:15.5px;
  line-height:1.65;
  color:#333;
}

/* GRID */

.sectors-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  margin-bottom:36px;
}

.sector-box{
  border:1px solid #e6ebf1;
  border-radius:16px;
  padding:28px 22px;
  background:#f6f8fb;
  text-align:left;
}

.sector-box h3{
  font-size:17.5px;
  font-weight:800;
  color:#08243f;
  margin-bottom:8px;
}

.sector-box p{
  font-size:14.5px;
  line-height:1.6;
  color:#444;
}

/* OSB FOOTER */

.osb-focus{
  font-size:14px;
  color:#444;
  border-top:1px dashed #d6dbe2;
  padding-top:18px;
}

/* MOBİL */

@media(max-width:992px){
  .sectors-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .sectors-grid{
    grid-template-columns:1fr;
  }

  .home-sectors h2{
    font-size:24px;
  }

  .sectors-intro{
    font-size:14.5px;
  }
}











/* =========================
   HOME EXPERIENCE
========================= */

.home-experience{
  padding:64px 0;
  background:#f6f8fb;
}

.home-experience .container{
  max-width:1100px;
  width:92%;
  margin:auto;
  text-align:center;
}

.home-experience h2{
  font-size:30px;
  font-weight:900;
  color:#08243f;
  margin-bottom:14px;
}

.experience-intro{
  max-width:780px;
  margin:0 auto 40px;
  font-size:15.5px;
  line-height:1.65;
  color:#333;
}

/* STATS */

.experience-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:40px;
}

.exp-box{
  background:#ffffff;
  border:1px solid #e6ebf1;
  border-radius:16px;
  padding:26px 18px;
}

.exp-box strong{
  display:block;
  font-size:26px;
  font-weight:900;
  color:#08243f;
  margin-bottom:6px;
}

.exp-box span{
  font-size:14px;
  color:#555;
}

/* NOTES */

.experience-notes{
  max-width:820px;
  margin:0 auto;
}

.experience-notes p{
  font-size:15px;
  line-height:1.65;
  color:#333;
  margin-bottom:12px;
}

.experience-notes strong{
  color:#08243f;
  font-weight:700;
}

/* MOBİL */

@media(max-width:992px){
  .experience-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .experience-stats{
    grid-template-columns:1fr;
  }

  .home-experience h2{
    font-size:24px;
  }

  .experience-intro,
  .experience-notes p{
    font-size:14.5px;
  }
}







/* =========================
   HOME FAQ – ACCORDION
========================= */

.home-faq{
  padding:56px 0; /* 64 › 56 */
  background:#ffffff;
}

.home-faq .container{
  max-width:860px; /* 900 › 860 */
  width:92%;
  margin:auto;
}

.home-faq h2{
  text-align:center;
  font-size:28px;
  font-weight:900;
  color:#08243f;
  margin-bottom:30px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px; /* 22 › 14 */
}

.faq-item{
  border:1px solid #e3e8ef;
  border-radius:12px;
  background:#f6f8fb;
  overflow:hidden;
}

/* HEADER (TIKLANAN ALAN) */

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:18px 20px;
  text-align:left;
  font-size:15.5px;
  font-weight:800;
  color:#08243f;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question::after{
  content:"+";
  font-size:20px;
  font-weight:700;
  transition:.25s ease;
}

/* ACTIVE */

.faq-item.active .faq-question::after{
  content:"-";
}

/* BODY */

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  padding:0 20px;
}

.faq-answer p{
  font-size:14.3px;
  line-height:1.6;
  color:#333;
  padding-bottom:16px;
}

/* MOBİL */

@media(max-width:576px){
  .home-faq h2{
    font-size:23px;
  }

  .faq-question{
    font-size:15px;
    padding:16px;
  }

  .faq-answer{
    padding:0 16px;
  }

  .faq-answer p{
    font-size:14px;
  }
}











/* =========================
   HOME MAP SECTION
========================= */

.home-map{
  padding:90px 0;
  background:radial-gradient(ellipse at top, #0c1324 0%, #050914 70%);
  color:#ffffff;
}

.home-map .container{
  max-width:1200px;
  width:92%;
  margin:auto;
}

/* HEAD */

.map-head{
  margin-bottom:42px;
}

.map-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  color:#ff7a18;
  margin-bottom:6px;
}

.map-head h2{
  font-size:36px;
  font-weight:900;
  line-height:1.2;
}

/* WRAP */

.map-wrap{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:42px;
  align-items:center;
}

/* MAP */

.map-frame{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.55);
}

.map-frame iframe{
  width:100%;
  height:360px;
  border:0;
}

/* INFO CARD */

.map-info{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:36px 34px;
  backdrop-filter:blur(6px);
}

.map-info h3{
  font-size:22px;
  font-weight:900;
  margin-bottom:18px;
}

.info-block{
  margin-bottom:14px;
}

.info-block strong{
  display:block;
  font-size:14px;
  color:#ff7a18;
  margin-bottom:4px;
}

.info-block p{
  font-size:14.5px;
  line-height:1.6;
  color:#e5e7eb;
}

.info-desc{
  margin-top:18px;
  font-size:14.5px;
  line-height:1.65;
  color:#d1d5db;
}

/* BUTTON */

.map-btn{
  display:inline-block;
  margin-top:26px;
  background:#e66a10;
  color:#ffffff;            /* WCAG kontrast OK */
  padding:16px 32px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  transition:all .25s ease;
}

/* Hover – kontrast bozulmaz */
.map-btn:hover{
  background:#ff8c33;
  color:#ffffff;
}

/* Keyboard erişilebilirlik */
.map-btn:focus,
.map-btn:focus-visible{
  outline:3px solid #ffffff;
  outline-offset:3px;
}




.map-btn:hover{
  transform:translateY(-2px);
  background:#ff8c33;
}

/* MOBİL */

@media(max-width:992px){
  .map-wrap{
    grid-template-columns:1fr;
  }

  .map-head h2{
    font-size:28px;
  }

  .map-frame iframe{
    height:300px;
  }
}

@media(max-width:576px){
  .home-map{
    padding:60px 0;
  }

  .map-info{
    padding:26px 22px;
  }

  .map-btn{
    width:100%;
    text-align:center;
  }
}












/* =========================
   CONTACT SPLIT – OPTİMİZE
========================= */
.contact-split{
  display:grid;
  grid-template-columns:1fr 1fr;
}

/* LEFT */

.contact-left{
  padding:55px 55px; /* 70 › 55 */
  background:#ffffff;
}

.contact-left h2{
  font-size:20px;
  font-weight:800;
  margin-bottom:20px;
}

.contact-left form{
  display:flex;
  flex-direction:column;
  gap:12px; /* 14 › 12 */
}

.contact-left input,
.contact-left textarea,
.contact-left select{
  width:100%;
  padding:12px 14px; /* daha kompakt */
  border:1px solid #e1e5eb;
  border-radius:6px;
  font-size:14px;
}

.contact-left textarea{
  min-height:100px; /* 120 › 100 */
  resize:none;
}

.phone-row{
  display:flex;
  gap:10px;
}

.phone-row select{
  width:76px;
}

.contact-left button{
  width:140px;
  padding:11px;
  background:#e66a10;
  color:#ffffff;
  border:none;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}


.contact-left button:hover{
  background:#e66c12;
}

/* MESSAGE */

#formMessage{
  margin-top:10px;
  font-size:14px;
  color:#198754;
}

/* RIGHT */

.contact-right{
  position:relative;
  background:url("/assets/images/contact-side.jpg") center/cover no-repeat;
  color:#fff;
}

.contact-right .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(6,32,58,.92),
    rgba(6,32,58,.85)
  );
}

.right-content{
  position:relative;
  z-index:2;
  padding:70px 60px; /* 80 › 70 */
  max-width:380px;  /* 420 › 380 */
}

.right-content h3{
  font-size:24px;
  font-weight:800;
  margin-bottom:12px;
}

.right-content p{
  font-size:14.5px;
  line-height:1.6;
  margin-bottom:22px;
}

.right-btn{
  display:inline-block;
  padding:11px 24px;
  border:1.5px solid #fff;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-weight:600;
  transition:.25s ease;
}

.right-btn:hover{
  background:#fff;
  color:#06203a;
}

/* MOBILE */

@media(max-width:900px){
  .contact-split{
    grid-template-columns:1fr;
  }

  .contact-left{
    padding:40px 24px;
  }

  .contact-right{
    min-height:360px;
  }

  .right-content{
    padding:50px 30px;
  }
}


html{overflow:hidden;}
body{overflow-x:hidden; overflow-y:auto;}





