html, body {
    margin: 0;
    padding: 0;
   background: linear-gradient(180deg, #0f172a, #020617);
}
.page-wrapper {
	 font-family: "Montserrat", "Segoe UI", Roboto, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background:#f5f6f7;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    overflow-x: hidden;
}
/* CONTAINER - TÜM SAYFA İÇİN 1060PX */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
   overflow-x: hidden;
}

/* HEADER - MENÜ */
.site-header {   
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: center; 
}

/* LOGO */
.logo img {
    height: 220px;
    width: auto;
    border-radius: 5px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* MENÜ */
.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 10px; /* Çok küçük */
    border-radius: 3px;
    transition: all 0.3s;
    /* Background ve border kaldırıldı */
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.1); /* Sadece hover'da background */
    transform: translateY(-1px); /* Daha az hareket */
}

/* HERO BÖLÜMÜ */
.hero {
    position: relative;
    height: 800px;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/hero2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* 🔴 kritik */
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    padding-top: 10px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0.9;
}

/* BUTONLAR */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: left;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

/* TEKLİF AL BUTONU */
.hero-buttons .btn.primary,
.cta-inner .btn.primary {
    background: #ff6600;
    color: white;
    padding: 14px 30px 14px 20px;
    position: relative;
}

.hero-buttons .btn.primary i,
.cta-inner .btn.primary i {
    margin-right: 10px;
    font-size: 18px;
}

.hero-buttons .btn.primary::after,
.cta-inner .btn.primary::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
}

.hero-buttons .btn.primary:hover::after,
.cta-inner .btn.primary:hover::after {
    right: 15px;
}

.hero-buttons .btn.primary:hover,
.cta-inner .btn.primary:hover {
    background: #e55a00;
    padding-right: 35px;
}

.dark {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.dark:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

/* INFO BOXES */
.info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.info-box {
    background: white;
    padding: 25px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-size: 18px;
    font-weight: bold;
    color: #003366;
    transition: all 0.3s;
	 background-repeat: no-repeat;
  
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.info-box small {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-top: 5px;
	 background-repeat: no-repeat;
  border-radius: 10px;
}

/* Link alt çizgi olmasın */
.info a.info-box{
  text-decoration:none;
}
/* Yazılı info kutusu */
.info-text{
 background: #dde3ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* İçteki badge ortalansın */
.info-text .badge-box{
  box-shadow: none;
  background: transparent;
}
.badge-box i{
  color: #f97316; /* turuncu */
}

/* SERVICES */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h3 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 10px;
}

.services > p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

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

/* Kart temel ayar */
.service-card{
    position: relative;
    overflow: hidden; /* taşmayı keser */
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

/* Arka planı büyütmek için pseudo-element */
.service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

/* Hover: MERKEZDEN ZOOM */
.service-card:hover::before{
    transform: scale(1.2);
}

/* Yazı üstte kalsın */
.service-card span{
    position: relative;
    z-index: 2;
}

/* Hafif karartma (opsiyonel ama çok şık) */
.service-card::after{
    content:"";
    position:absolute;
    inset:0;
   
    z-index:1;
    transition: background .3s ease;
}

.service-card:hover::after{
    background:rgba(0,0,0,0.20);
}


/* CTA - ORTALANMIŞ */
.cta{
    background:#f8f9fa;
    padding:40px 0;
}

.cta-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    text-align:center;
}


.cta-inner span {
    font-size: 20px;
    font-weight: 600;
    color: #003366;
	 margin: 0;
}

/* FOOTER - ORTALANMIŞ */
footer{
    background:#2c3e50;
    color:#fff;
    padding:25px 0;
}

footer .container{
    text-align:center;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .info,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 450px;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero-content {
        padding-top: 150px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    /* CTA responsive */
    .cta-inner {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Footer responsive */
    footer .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .info,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 80%;
        margin-bottom: 10px;
    }
}
.menu-phone {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
    white-space: nowrap;
    cursor: default; /* dekoratif */
}

.menu-phone i {
    font-size: 14px;
}
.menu-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.55);
}
.line{
    width: 100%;
    max-width:800px;   /* isteğe bağlı */
    height: 2px;
    background: #ff6600;
    margin: 10px auto;  /* ortala */
    border-radius: 2px;
}
.mb-20{
    margin-bottom: 20px;
}
.modali-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.65);
  display:none; align-items:center; justify-content:center;
  z-index:9999;
}
.modali-box{
  background:#fff; width:100%; max-width:470px;
  padding:24px; border-radius:12px; position:relative;
}
.modali-close{
  position:absolute; top:10px; right:12px;
  background:none; border:none; font-size:22px; cursor:pointer;
}
#teklifForm input, #teklifForm textarea{
  width:100%; padding:10px 12px; margin-bottom:10px;
  border:1px solid #ddd; border-radius:6px;
}
#teklifForm textarea{ min-height:90px; resize:vertical; }
.form-sonuc{ margin-top:10px; font-size:14px; }
.form-sonuc.ok{ color:#1a7f37; }
.form-sonuc.err{ color:#b42318; }
.button-row{
    display: flex;
    gap: 12px;          /* buton aralığı */
    justify-content: center; /* ortalamak istersen */
    margin-top: 10px;
}
.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.service-card{
    position:relative;
    height:220px;
    background-size:cover;
    background-position:center;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:transform .3s ease, box-shadow .3s ease;
}

/* koyu overlay */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.15));
}

.service-card span{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: rgba(40, 40, 40, 0.92); /* koyu gri */
    color: #fff; /* siyah yazı */

    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;

    z-index: 2;
}

.service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.service-card:hover span{
    background: rgba(30, 30, 30, 0.98);
}

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

@media (max-width: 480px){
    .service-grid{
        grid-template-columns:1fr;
    }
}
.info{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.info-box{
    height: 65px;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.infom{
	margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 550px;
  
}
.section-title{
    position: relative;
    font-size: 36px;
    font-weight: 800;
    color: #1f2937; /* koyu lacivert/siyah */
    text-align: center;
    margin-bottom: 30px;
}
.section-title::after{
    content: "";
    display: block;
    width: 120px;          /* çizgi uzunluğu */
    height: 3px;           /* çizgi kalınlığı */
    background: #ff6600;   /* görseldeki açık ton */
    margin: 14px auto 0;   /* ortala + üst boşluk */
    border-radius: 2px;
}

.section-divider{
    display: block;
    margin: 0 auto 20px; /* ortala + alt boşluk */
    max-width: 220px;    /* resim çok büyümesin */
    height: auto;
    opacity: 0.9;
}
.infom-box{
    height: 30px;    
   text-decoration:none;
}
@media (max-width: 992px){
    .info{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px){
    .info{
        grid-template-columns: 1fr;
    }
}
/* Normal hali */
.site-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  transition: all .25s ease;
}

/* Scroll olunca: fixed + daha kısa */
.site-header.scrolled{
  position: fixed;
  background: rgba(0,0,0,0.15);
  padding: 8px 0;            /* 🔴 yükseklik yarıya iner */
  backdrop-filter: blur(6px);
}

/* Logo normal büyük, scroll'da küçülsün */
.logo img{
  height: 240px;
  transition: height .25s ease;
}

.site-header.scrolled .logo img{
  height: 80px;              /* 🔴 burada istediğin gibi ayarla */
}

/* Menü yazıları da biraz küçülsün */
.site-header.scrolled .menu a{
  font-size: 14px;
  padding: 4px 8px;
}
.btn.primary {
  background-color: #ff6600;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,102,0,0.35);
}

.btn.primary:hover {
  background-color: #e55a00;
  transform: translateY(-1px);
}.device-list{
  margin: 12px 0 22px;
  padding-left: 18px;
  line-height: 1.9;
  color: #222;
}

.device-list li{
  margin-bottom: 6px;
}
/* FOOTER */
.site-footer {
    background-image: url('../images/foter.jpg');  
    color: black;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: #111;
  margin-bottom: 20px;
  font-size: 1.1rem;
  border-bottom: 2px solid #0088cc;
  padding-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li { margin-bottom: 10px; }

.footer-column a {
  color: #111;
  text-decoration: none;
  transition: color .2s;
}

.footer-column a:hover { color: #0088cc; }

/* Sosyal ikonlar */
.social-icons{
  display:flex;
  gap:10px;
  margin: 10px 0 15px;
   justify-content:center;
}
.social-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(0,0,0,.08);
}
.social-icon:hover{
  transform: translateY(-1px);
}

/* İlçeler: 2 sıra, küçük */
.ilce-listesi{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.ilce-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px 10px;
}
.ilce-link{
  font-size: 12px;
  line-height: 1.2;
  opacity: .9;
  padding: 2px 0;
}
