:root{
  --ana-renk:#0f172a;
  --vurgu-renk:#f59e0b;
  --beyaz:#ffffff;
  --gri:#f3f4f6;
  --header-h:90px;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:"Segoe UI",sans-serif;}

html{background:#0b1120;}

body{
  background:var(--beyaz);
  color:#333;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
}

/* Footer’ın sayfa altında oturması */
main{flex:1 0 auto;}
footer{margin-top:auto;}

a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.container{max-width:1200px;margin:0 auto;padding:0 20px;}


@keyframes yukariCik{
  from{opacity:0;transform:translateY(26px);}
  to{opacity:1;transform:translateY(0);}
}


header{
  background:var(--ana-renk);
  height:var(--header-h);
  display:flex;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 4px 10px rgba(0,0,0,.20);
}
.header-container{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
}

/* Logo */
.logo{flex:0 0 auto;}
.logo a{display:block;transition:transform .25s ease;}
.logo a:hover{transform:scale(1.04);}
.logo img{
  height:80px;
  width:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.25));
}


.primary-nav{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  position:relative;
  opacity:1;
  pointer-events:auto;
}


.nav-panel{
  position:static;
  width:auto;
  margin:0;
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
  max-height:none;
  overflow:visible;
}

.nav-list{display:flex;align-items:center;gap:28px;}
.nav-list a{
  color:#e2e8f0;
  font-weight:600;
  font-size:1.05rem;
  transition:.25s ease;
}
.nav-list a:hover,.nav-list a.active{color:var(--vurgu-renk);}


.btn-iletisim{
  background:var(--vurgu-renk);
  color:var(--ana-renk) !important;
  padding:10px 22px;
  border-radius:10px;
  font-weight:800;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-iletisim:hover{
  background:#fff;
  box-shadow:0 0 15px rgba(255,255,255,.18);
}


.nav-toggle{
  margin-left:auto;
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}
.nav-toggle:hover{background:rgba(255,255,255,.10);transform:translateY(-1px);}


.hero{
  background:
    linear-gradient(to top, rgba(10,15,30,.92), rgba(10,15,30,.35)),
    url("assets/img/heroizmir.png"); 
  background-size:cover;
  background-position:center 35%;
  height:60vh;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  text-align:center;
  color:#fff;
  padding-top:10px;
}
.hero-content{max-width:920px;padding:0 18px;}
.vurgu{color:var(--vurgu-renk);}

.hero-content h2{
  font-size:3.05rem;
  line-height:1.12;
  margin-bottom:.9rem;
  text-shadow:0 4px 15px rgba(0,0,0,.50);
  animation:yukariCik 1s ease-out both;
}
.hero-content p{
  font-size:1.15rem;
  line-height:1.55;
  color:#e2e8f0;
  max-width:780px;
  margin:0 auto 1.9rem;
  animation:yukariCik 1.15s ease-out both;
}
.hero-btns{
  display:flex;
  justify-content:center;
  gap:14px;
  animation:yukariCik 1.3s ease-out both;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 34px;
  border-radius:999px;
  font-weight:900;
  font-size:1rem;
  transition:.25s ease;
  border:none;
}
.btn-primary{
  background:linear-gradient(45deg, var(--vurgu-renk), #fcd34d);
  color:var(--ana-renk);
  box-shadow:0 4px 15px rgba(245,158,11,.40);
}
.btn-primary:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 10px 25px rgba(245,158,11,.55);
}
.btn-whatsapp{
  background:linear-gradient(45deg, #25D366, #128C7E);
  color:#fff;
  box-shadow:0 4px 15px rgba(37,211,102,.35);
}
.btn-whatsapp:hover{transform:translateY(-3px) scale(1.02);}


.features{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  padding:25px 20px 10px;
  text-align:center;
  margin-top:-20px;
}
.feature-box{
  padding:18px 16px;
  background:#fff;
  border-radius:14px;
  border:1px solid transparent;
  border-bottom:4px solid var(--vurgu-renk);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.30s ease;
}
.feature-box:hover{
  transform:translateY(-8px);
  border-color:var(--vurgu-renk);
  box-shadow:0 18px 35px rgba(0,0,0,.10);
}
.feature-box i{font-size:1.6rem;color:var(--ana-renk);margin-bottom:8px;}
.feature-box h3{color:var(--ana-renk);font-size:1.05rem;margin-bottom:6px;font-weight:800;}
.feature-box p{color:#666;line-height:1.5;font-size:.88rem;}


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


@media (max-width:768px){
  .features{
    grid-template-columns:repeat(2, 1fr);
    padding:18px 18px 20px;
    margin-top:-10px;
  }
}


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


.page-header{
  background:var(--ana-renk);
  color:#fff;
  padding:16px 0 14px;
  text-align:center;
  border-bottom:4px solid var(--vurgu-renk);
  margin-bottom:8px;
}
.page-header h1{
  font-size:1.80rem;
  margin-bottom:8px;
  font-weight:600;
  letter-spacing:.2px;
}
.page-header p{
  color:#cbd5e1;
  font-size:1.05rem;
  max-width:820px;
  margin:0 auto;
  padding:0 14px;
}


footer{
  padding:14px 0 calc(12px + env(safe-area-inset-bottom));
  background:#0b1120;
  color:#888;
  text-align:center;
  border-top:1px solid #222;
}
.social-icons{
  margin-bottom:10px;
  display:flex;
  justify-content:center;
  gap:15px;
}
.social-icons a{
  width:38px;height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:1.05rem;
  transition:.25s ease;
  box-shadow:0 4px 10px rgba(0,0,0,.30);
}
.social-icons a.linkedin{background:#0077b5;}
.social-icons a.facebook{background:#1877F2;}
.social-icons a.tiktok{background:#000;border:1px solid rgba(255,255,255,.2);}
.social-icons a.youtube{background:#FF0000;}
.social-icons a.instagram{
  background:radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%,
    #d6249f 60%, #285AEB 90%);
}
.social-icons a:hover{transform:translateY(-4px) scale(1.06);filter:brightness(1.12);}
.footer-links{margin-bottom:15px;}
.footer-links a{color:#ccc;margin:0 10px;font-size:.9rem;transition:.25s;}
.footer-links a:hover{color:var(--vurgu-renk);text-decoration:underline;}
.footer-links span{color:#555;}
.copyright{color:#666;font-size:.9rem;line-height:1.6;margin-bottom:10px;}
.dev-link{color:var(--vurgu-renk);font-weight:900;font-family:"Courier New", monospace;letter-spacing:1px;transition:.25s;}
.dev-link:hover{color:#fff;text-shadow:0 0 5px var(--vurgu-renk);}


.footer-top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:12px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  padding:0 20px;
}
.footer-policy{
  color:#cbd5e1;
  font-size:.9rem;
  font-weight:600;
  white-space:nowrap;
  transition:.25s ease;
}
.footer-policy:hover{color:var(--vurgu-renk);}
.footer-top-row .social-icons{margin:0;gap:12px;}
.sep{color:#444;margin:0 6px;}


@media (max-width:768px){
  :root{--header-h:72px;}


  header{
    position:fixed;
    top:0;left:0;right:0;
    height:var(--header-h);
    padding:0;
  }


  body{padding-top:0;}
  main{padding-top:0;}

 
  .page-header{margin-top:var(--header-h);}


  .hero{
    padding-top:calc(var(--header-h) + 12px);
    height:75vh;
  }


  .services-hero{
    padding-top:calc(var(--header-h) + 18px);
  }

  .header-container{padding:4px 10px;height:100%;}
  .logo img{height:48px;}

  .nav-toggle{display:flex;}
  .nav-list{display:flex;flex-direction:column;gap:10px;}

  .primary-nav{
    position:fixed;
    inset:0;
    display:flex;
    align-items:flex-start;
    justify-content:flex-end;
    padding:14px 14px 0 14px;
    opacity:0;
    pointer-events:none;
    z-index:2000;
  }
  .primary-nav.open{opacity:1;pointer-events:auto;}

  .primary-nav::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(2,6,23,.55);
    backdrop-filter:blur(2px);
    z-index:0;
  }

  .nav-toggle{position:relative;z-index:2;}

  .nav-panel{
    position:relative;
    z-index:1;
    width:260px;
    margin-top:56px;
    background:rgba(15,23,42,.98);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:14px;
    box-shadow:0 18px 45px rgba(0,0,0,.45);
    max-height:calc(100vh - 120px);
    overflow:auto;
  }
  .nav-panel a{
    display:block;
    padding:11px 12px;
    border-radius:14px;
    color:#e2e8f0;
    font-weight:700;
    background:rgba(255,255,255,.05);
    margin-bottom:10px;
  }
  .nav-panel a:hover{background:rgba(255,255,255,.08);}
  .nav-panel a.active{color:var(--vurgu-renk);}
  .nav-panel a.btn-iletisim{
    background:var(--vurgu-renk);
    color:var(--ana-renk) !important;
    margin-bottom:0;
    text-align:center;
  }

  .hero-content h2{font-size:1.42rem;line-height:1.08;letter-spacing:-.25px;margin-bottom:.5rem;}
  .hero-content h2 .vurgu{display:block;font-size:1.02rem;font-weight:800;margin-top:4px;}
  .hero-content p{font-size:.88rem;line-height:1.38;max-width:300px;margin:0 auto .95rem;}
  .hero-btns{flex-direction:column;gap:10px;width:100%;max-width:300px;margin:0 auto;}
  .btn{width:100%;padding:10px 16px;font-size:.92rem;}

  .page-header{padding:10px 0 10px;margin-bottom:8px;}
  .page-header h1{font-size:1.60rem;margin-bottom:6px;}
  .page-header p{font-size:.95rem;padding:0 14px;}

  .footer-top-row{
    flex-wrap:wrap;
    justify-content:center;
    text-align:center;
  }
  .footer-policy{order:1;}
  .footer-top-row .social-icons{
    order:2;
    width:100%;
    margin-top:4px;
    justify-content:center;
  }
}

@media (max-width:420px){
  .logo img{height:46px;}
  .hero-content h2{font-size:1.36rem;}
  .hero-content h2 .vurgu{font-size:1.00rem;}
  .page-header h1{font-size:1.50rem;}
}


.about-content{
  display:flex;
  gap:48px;
  align-items:flex-start;
  padding:36px 0 20px;
}
.about-text{flex:1;max-width:640px;}
.about-text p{line-height:1.75;margin-bottom:14px;text-align:justify;}
.about-infra{
  margin-top:18px;
  padding:18px;
  background:#f8fafc;
  border-left:4px solid var(--vurgu-renk);
  border-radius:10px;
}
.about-infra p{margin:0;color:#334155;line-height:1.7;font-size:1rem;text-align:justify;}
.about-list{margin-top:18px;padding:0;}
.about-list li{display:flex;align-items:center;gap:10px;margin:8px 0;font-weight:600;}
.about-list li::before{
  content:"✓";
  width:22px;height:22px;border-radius:50%;
  background:rgba(245,158,11,.2);
  color:var(--vurgu-renk);
  display:flex;align-items:center;justify-content:center;
}
.about-img img{
  width:100%;
  max-width:520px;
  border-radius:14px;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}
@media (max-width:768px){
  .about-content{flex-direction:column;gap:18px;padding:18px 0 14px;}
  .about-text{max-width:100%;}
  .about-img img{max-width:100%;}
}


.services-hero{
  padding:26px 0 10px;
  background:linear-gradient(180deg, rgba(15,23,42,.06), rgba(15,23,42,0));
}
.services-hero-inner{display:block;}
.services-hero-text{
  max-width:700px;
  width:100%;
  text-align:center;
  margin:0 auto;
}
.services-hero-text h2{
  color:var(--ana-renk);
  font-size:2.1rem;
  line-height:1.15;
  margin-bottom:10px;
  font-weight:900;
}
.services-hero-text p{
  color:#334155;
  line-height:1.7;
  margin-bottom:14px;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.services-hero-media{flex:1;position:relative;min-width:320px;}
.services-hero-media img{
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
  border:1px solid rgba(15,23,42,.10);
  display:block; /* FOTO ALTINDAKİ BEYAZ BOŞLUĞU KESER */
}
.services-hero-badge{
  position:absolute;
  right:14px;bottom:14px;
  background:rgba(15,23,42,.92);
  color:#e2e8f0;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  display:flex;
  gap:8px;
  align-items:center;
  border:1px solid rgba(255,255,255,.12);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  padding:22px 20px 6px;
}
.service-card{
  background:#fff;
  border-radius:16px;
  padding:18px 16px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.25s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:0 18px 38px rgba(0,0,0,.10);}
.service-ico{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(245,158,11,.14);
  color:var(--ana-renk);
  margin-bottom:10px;
}
.service-card h3{color:var(--ana-renk);font-size:1.05rem;margin-bottom:6px;font-weight:900;}
.service-card p{color:#64748b;line-height:1.6;font-size:.92rem;}

.services-sectors{
  margin-top:12px;
  padding:22px 0;
  background:#f8fafc;
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.services-section-title{text-align:center;margin-bottom:14px;}
.services-section-title h2{color:var(--ana-renk);font-size:1.7rem;font-weight:900;margin-bottom:6px;}
.services-section-title p{color:#64748b;max-width:820px;margin:0 auto;line-height:1.6;}

.sector-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.sector-pill{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  padding:12px 12px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:#0f172a;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.services-steps{padding:22px 20px 4px;}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin-top:14px;
}
.step{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.step-no{
  display:inline-flex;
  width:34px;height:34px;
  border-radius:12px;
  align-items:center;justify-content:center;
  background:var(--vurgu-renk);
  color:var(--ana-renk);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{font-weight:900;color:var(--ana-renk);margin-bottom:6px;}
.step p{color:#64748b;line-height:1.6;font-size:.92rem;}

.services-cta{
  padding:22px 0 26px;
  background:linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.06));
}
.services-cta-inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
}
.services-cta-inner h2{font-size:1.4rem;font-weight:900;color:var(--ana-renk);margin-bottom:6px;}
.services-cta-inner p{color:#64748b;margin:0;line-height:1.6;}
.services-cta-btns{display:flex;gap:10px;flex-wrap:wrap;}

@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2, 1fr);}
  .steps-grid{grid-template-columns:repeat(2, 1fr);}
  .sector-grid{grid-template-columns:repeat(2, 1fr);}
  .services-hero-inner{display:block;}
}
@media (max-width:768px){
  .services-grid{grid-template-columns:1fr;}
  .steps-grid{grid-template-columns:1fr;}
  .sector-grid{grid-template-columns:1fr;}
  .services-cta-inner{flex-direction:column;align-items:flex-start;}

  .services-hero-text h2{font-size:1.45rem;line-height:1.15;}
  .services-hero-text p{font-size:.9rem;line-height:1.5;}
}

/* MOBİL HAKKIMIZDA GÜZELLEŞTİRME */
@media (max-width:768px){
  .about-text{ padding:0 14px; }
  .about-text h2{
    font-size:1.3rem;
    line-height:1.25;
    margin-bottom:12px;
  }
  .about-text p{
    font-size:.95rem;
    line-height:1.65;
    margin-bottom:15px;
    text-align:justify;
  }
  .about-infra{
    margin:20px 0;
    padding:16px;
    font-size:.95rem;
    text-align:justify;
  }
}

@media (max-width:1024px){
  .features{
    display:grid;
    grid-template-columns:repeat(2, 1fr) !important;
  }
}


.ref-page-section{
  padding:60px 0;
  background:#f8fafc;
}

.ref-page-section .container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

.ref-grid.ref-logos{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(170px, 1fr));
  gap:14px;
}

/* minimal kart */
.ref-grid.ref-logos .ref-card{
  height:110px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:14px;
  box-shadow:0 8px 22px rgba(2,6,23,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  overflow:hidden;
  transition:.2s ease;
}


.ref-grid.ref-logos .ref-card img{
  max-height:100px;      
  max-width:96%;
  width:auto;
  height:auto;
  display:block;
  filter:none;
  opacity:1;
}


.ref-grid.ref-logos .ref-card:hover{
  transform:translateY(-3px);
  border-color:var(--vurgu-renk);
}


@media (max-width:768px){
  .ref-grid.ref-logos{
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
  }
  .ref-grid.ref-logos .ref-card{
    height:96px;
    padding:8px;
  }
  .ref-grid.ref-logos .ref-card img{
    max-height:74px;
  }
}
.ref-stats{
  display:flex;
  justify-content:center;
  gap:60px;
  margin:35px 0 20px;
  text-align:center;
}

.ref-stats strong{
  font-size:2.2rem;
  color:var(--vurgu-renk);
  display:block;
  font-weight:800;
}

.ref-stats span{
  font-size:.95rem;
  color:#475569;
}

.ref-cta{
  text-align:center;
  margin-top:10px;
}

@media (max-width:768px){
  .ref-stats{ gap:26px; }
  .ref-stats strong{ font-size:1.9rem; }
}


.contact-quick{background:#fff;}
.contact-quick-row{
  display:flex;
  gap:12px;
  justify-content:center;
  padding:14px 0;
  flex-wrap:wrap;
}
.contact-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#f8fafc;
  color:var(--ana-renk);
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}
.contact-chip i{font-size:1.05rem;}
.contact-chip:hover{transform:translateY(-2px); border-color:var(--vurgu-renk);}
.contact-chip.chip-whatsapp{background:linear-gradient(90deg,#25D366,#128C7E); color:#fff; border-color:transparent;}

.contact-section{padding:22px 0 60px;}
.contact-container{
  display:flex;
  gap:28px;
  align-items:stretch;
}
.contact-left{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.info-box{
  background:#fff;
  padding:18px 18px 10px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 25px rgba(2,6,23,.05);
}
.info-item{display:flex; align-items:flex-start; gap:14px; margin-bottom:16px;}
.info-icon{
  width:44px; height:44px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:var(--vurgu-renk);
  color:var(--ana-renk);
  flex-shrink:0;
}
.info-text h3{margin:0 0 6px; color:var(--ana-renk); font-size:1.05rem;}
.info-text p{margin:0; color:#475569; line-height:1.45; font-size:.95rem;}
.contact-link{color:inherit; text-decoration:none;}
.contact-link:hover{color:var(--ana-renk); text-decoration:underline;}

.small-map{
  width:100%;
  min-height:260px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 25px rgba(2,6,23,.05);
}
.small-map iframe{
  width:100%;
  height:350px;
  border:0;
  border-radius:12px;
  display:block;
}

.map-fallback{
  display:flex;
  gap:12px;
  margin-top:0;            /* 16px'i kaldır */
  flex-wrap:wrap;

  /* small-map gibi kart görünümü */
  width:100%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 25px rgba(2,6,23,.05);
  background:#fff;
  padding:12px;
  justify-content:center;  /* desktop da ortalı */
}

.map-btn{
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.15);
  text-decoration:none;
  font-weight:600;
}

.map-btn.outline{
  background:#fff;
}


.contact-form{
  flex:1;
  background:#fff;
  padding:22px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 25px rgba(2,6,23,.05);
}
.contact-form-title{margin:0 0 6px; color:var(--ana-renk); font-size:1.25rem;}
.contact-form-sub{margin:0 0 18px; color:#64748b; line-height:1.45;}

.form-group{margin-bottom:14px;}
.form-group label{display:block; margin-bottom:8px; font-weight:800; color:var(--ana-renk);}
.form-group input,.form-group textarea{
  width:100%;
  padding:12px;
  border:1px solid rgba(15,23,42,.14);
  border-radius:10px;
  font-size:1rem;
  outline:none;
  background:#f8fafc;
  transition:.2s ease;
}
.form-group input:focus,.form-group textarea:focus{
  border-color:var(--vurgu-renk);
  box-shadow:0 0 0 4px rgba(245,158,11,.16);
  background:#fff;
}

.submit-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(90deg,#25D366,#128C7E);
  color:#fff;
  font-size:1.05rem;
  font-weight:900;
  cursor:pointer;
  transition:.2s ease;
}
.submit-btn:hover{transform:translateY(-2px); filter:brightness(1.05);}

.contact-note{
  margin-top:12px;
  font-size:.92rem;
  color:#64748b;
}
.contact-note a{color:var(--ana-renk); font-weight:800; text-decoration:none;}
.contact-note a:hover{text-decoration:underline;}

@media (max-width:900px){
  .contact-container{flex-direction:column;}
  .small-map{min-height:220px;}
}


/* SEO helper: visually hidden but accessible (safe) */
.seo-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.copyright{
  font-size:0.75rem;
}
/* 📱 Mobil iletişim sayfası düzeltmeleri */
@media (max-width:768px){

  .contact-container{
    flex-direction:column;
    gap:18px;
  }

  .contact-left{
    width:100%;
  }

  .contact-form{
    width:100%;
  }

  .map-fallback{
    justify-content:center;
  }

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

  .info-box{
    padding:16px;
  }

}
