
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:'Inter', sans-serif;
}

body{
    background:#0b0b0b;
    color:#f2f2f2;
    line-height:1.6;
    padding-top:90px; /* fixed header boşluğu */
}

/* ===== HEADER ===== */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
    border-bottom:1px solid #eee;
}

.header-inner{
    max-width:1200px;
    margin:0 auto;
    padding:16px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:60px;
}

/* ===== NAV ===== */
.main-nav{
    display:flex;
    gap:32px;
}

.nav-link{
    position:relative;
    text-decoration:none;
    color:#000;
    font-weight:500;
    padding-bottom:6px;
}

/* underline */
.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#000;
    transition:width .35s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/* ==== INDEX.PHP'DEN TAŞINAN STILLER ==== */


    section{
            scroll-margin-top:120px;
        }
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:'Inter',sans-serif;
}

body{
    background:#0b0b0b;
    color:#f2f2f2;
    line-height:1.6;
    padding-top:99px; /* SABİT LOGO İÇİN BOŞLUK */
}


/* ===== LOGO ===== */
/* ORTAK HEADER */
.logo-fixed{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100px;
    z-index:9999;
    background:#ffffff;
    border-bottom:1px solid #e5e5e5;

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
}

.logo-fixed img{
    height:70px;
    width:auto;
}

/* MENU */
.logo-fixed nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.logo-fixed nav a{
    text-decoration:none;
    color:#000;
    font-size:15px;
    font-weight:500;
}

.logo-fixed nav a:hover{
    opacity:0.7;
}




header h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

header p{
    max-width:700px;
    font-size:18px;
    color:#cfcfcf;
}

/* ===== SECTIONS ===== */
section{
    padding:70px 0;
    border-top:1px solid #a3a2a268;
}

section h2{
    font-size:32px;
    margin-bottom:25px;
}

section p{
    max-width:900px;
    color:#d6d6d6;
    margin-bottom:20px;
}

/* ===== CONTAINER ===== */
.container{
    max-width:900px;
    margin:0 auto;
    padding:0 20px;
}

ul.zspot-list{
    margin-top:25px;
    padding-left:20px;
}

ul.zspot-list li{
    margin-bottom:12px;
    color:#d6d6d6;
}

/* ===== FOOTER ===== */
footer{
    padding:40px 10%;
    text-align:center;
    background:#000;
    color:#777;
    font-size:14px;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;

    grid-auto-rows: 1fr; /* İŞİ BİTİREN SATIR */
}


.feature-card {
    background: #1a1a1a;
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header, section {
    animation: fadeInUp 0.8s ease-out forwards;
}
.feature-card p{
    font-size:15px;
    line-height:1.6;
    color:#d0d0d0;
}

.feature-card strong{
    color:#fff;
}


.top-menu{
    display:flex;
    gap:30px;
}

.top-menu a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:500;
    transition:color 0.2s ease;
}

.top-menu a:hover{
    color:#666;
}

/* ===== İLETİŞİM ===== */
#iletisim{
    background:#111;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:center;
}

.contact-info h2{
    margin-bottom:20px;
}

.contact-info p{
    font-size:16px;
    line-height:1.8;
    color:#d6d6d6;
}

.contact-map iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:12px;
}

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

    .contact-map iframe{
        height:250px;
    }
}

/* ===== HERO / ANASAYFA ===== */
.hero {
    background-size: contain;   /* KIRPMADAN SIĞDIR */
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;     /* Boş kalan alan siyah */
    min-height: 100vh;
}


.hero-content h1{
    font-size:64px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    max-width:750px;
    color:#d6d6d6;
}

/* ===== ÖN TALEP FORMU ===== */
.request-form{
    margin-top:40px;
    max-width:800px;
}

.form-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}

.request-form input,
.request-form textarea{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    border:1px solid #333;
    background:#121212;
    color:#fff;
    font-size:15px;
}

.request-form input::placeholder,
.request-form textarea::placeholder{
    color:#888;
}

.request-form button{
    margin-top:25px;
    padding:14px 30px;
    border:none;
    border-radius:30px;
    background:#ffffff;
    color:#000;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.request-form button:hover{
    background:#e5e5e5;
}

/* ALT ÇİZGİ */
.logo-fixed nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#000;
    transition:width 0.4s ease;
}

/* HOVER */
.logo-fixed nav a:hover::after{
    width:100%;
}

/* AKTİF SAYFA */
.logo-fixed nav a.active::after{
    width:100%;
}
/**********************************************/
/* form.css den alınanlar*/
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:'Inter',sans-serif;
}

body{
    background:#0b0b0b;
    color:#f2f2f2;
}

/* HEADER FIX – SADECE FORM SAYFASI */
/* ORTAK HEADER */
.logo-fixed{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100px;
    z-index:9999;
    background:#ffffff;
    border-bottom:1px solid #e5e5e5;

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
}

.logo-fixed img{
    height:70px;
    width:auto;
}

/* MENU */
.logo-fixed nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.logo-fixed nav a{
    text-decoration:none;
    color:#000;
    font-size:15px;
    font-weight:500;
}

.logo-fixed nav a:hover{
    opacity:0.7;
}

.logo-fixed nav a{
    position:relative;
    padding:6px 0;
    color:#000;
    font-weight:500;
}


/* FORM SAYFASI İÇERİK BOŞLUĞU */
.form-wrapper{
    margin-top:140px;
}

/* ALT ÇİZGİ */
.logo-fixed nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#000;
    transition:width 0.4s ease;
}

/* HOVER */
.logo-fixed nav a:hover::after{
    width:100%;
}

/* AKTİF SAYFA */
.logo-fixed nav a.active::after{
    width:100%;
}


/* FORM AREA */
.form-wrapper{
    max-width:600px;
    margin:80px auto;
    padding:40px;
    background:#121212;
    border-radius:14px;
    border:1px solid #817f7fcd;
}

.form-wrapper h1{
    font-size:32px;
    margin-bottom:15px;
}

.form-wrapper p{
    color:#ccc;
    margin-bottom:30px;
}

.form-wrapper input,
.form-wrapper textarea{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border-radius:8px;
    border:1px solid #333;
    background:#0b0b0b;
    color:#fff;
}

.form-wrapper button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#fff;
    color:#000;
    font-weight:600;
    cursor:pointer;
}

.form-wrapper button:hover{
    background:#e5e5e5;
}


.form-subtitle{
    margin:30px 0 15px;
    font-size:18px;
    font-weight:600;
    color:#fff;
}

.radio-group{
    margin-bottom:18px;
}

.radio-group label{
    display:block;
    font-size:14px;
    color:#bbb;
    margin-bottom:6px;
}

.radio-options{
    display:flex;
    gap:20px;
}

.radio-options label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-size:15px;
    color:#fff;
}

.radio-options input[type="radio"]{
    accent-color:#ffffff;
    width:16px;
    height:16px;
}

.hidden-field{
    display:none;
}
.hidden-field{
    display:none;
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border-radius:8px;
    border:1px solid #333;
    background:#0b0b0b;
    color:#fff;
}
.field-note{
    display:block;
    margin:-10px 0 18px 2px;
    font-size:13px;
    color:#9a9a9a;
}
.form-hint {
  display: block;
  margin-top: -4px;
  font-size: 11px;
  color: #9a9a9a;
  font-weight: 400;
}
button[type="submit"] {
  margin-top: 12px;
}
.form-error {
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #c0392b;
  display: none;
}
.error-text{
    display:none;
    color:#d60000;
    font-size:13px;
    margin:6px 0 14px 2px;
}

.verify-message {
    background: #f4f6f8;
    border: 1px solid #ddd;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border-radius: 8px;
}

.verify-message h3 {
    margin-bottom: 10px;
}
.hide-form-content {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.hide-form-content .form-title,
.hide-form-content .form-desc,
.hide-form-content form {
    display: none !important;
}

.verify-message {
    background: #ffffff;
    color: #000;
    max-width: 480px;
    margin: 0 auto;
}

/* E-posta Doğrulama Kutusu */
.verify-message {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: 14px;
    padding: 32px 28px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

/* İçindeki başlık */
.verify-message h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

/* İçindeki açıklama yazıları */
.verify-message p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}
/* Verify mesajı görünürken form-wrapper'ı tamamen temizle */
.hide-form-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.campaign-banner {
    text-align: center;
    margin-top: 30px;
    color: #ffffff;
}

.campaign-banner h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}

.campaign-main {
    font-size: 20px;
    margin-bottom: 6px;
    opacity: 0.95;
}

.campaign-note {
    font-size: 13px;
    color: #bbbbbb;
    letter-spacing: 0.3px;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}


/* Her slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

/* Aktif slide */
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide 1 (mevcut hero görünümü) */
.hero-slide:first-child {
    background: linear-gradient(
        90deg,
        #000000 0%,
        #111111 40%,
        #f2f2f2 75%
    );
}

/* Slide 2 (kampanya PNG) */
.campaign-slide {
    background-image: url("../images/");
    background-size: contain;    
    background-repeat: no-repeat;
    background-position: center;

}


/* İçerik ortalama */
.hero-content {
    color: #fff;
    max-width: 600px;
    padding-top: 120px;
}
/* Slider okları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid #fff;
    width: 48px;
    height: 48px;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
    color: #000;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}


.hero-content {
    max-width: 800px;
    color: #fff;
}
      
/* ==============================
   HERO MERKEZ + WIFI ANİMASYON
============================== */

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-center {
    max-width: 850px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
}

.hero-center h1 {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-center p {
    font-size: 20px;
    line-height: 1.7;
    color: #d6d6d6;
}

/* WIFI ICON */
.wifi-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 18px;
    animation: wifiDrop 1.2s ease forwards;
}

/* ICON ANİMASYONU */
@keyframes wifiDrop {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* YAZI ANİMASYONU */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBİL */
@media (max-width: 768px) {
    .hero-center h1 {
        font-size: 46px;
    }

    .hero-center p {
        font-size: 17px;
    }

    .wifi-icon {
        font-size: 38px;
    }
}
/* HİZMETLER – YENİ TASARIM */
#hizmetler {
  background: #000;
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(180deg, #111, #0a0a0a);
  border: 1px solid rgba(156, 156, 156, 0.448);
  border-radius: 16px;
  padding: 28px;
}

.feature-image {
    flex: 0 0 70;
    
}

.feature-image img {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 16px;
}


.feature-text h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-text p {
  color: #cfcfcf;
  line-height: 1.6;
}
/*-------------*/
.feature-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #e0e0e0;
}
.feature-row {
  padding: 40px;
  gap: 40px;
  
}
.feature-list {
    max-width: 1400px;
    margin: 0 auto;
}
.feature-text {
    flex: 0 0 30%;
    padding: 10px 100px;
}
.feature-text h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 14px;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #e5e5e5;
}

.feature-list,
#features .container {
    max-width: 1900px;   /* 🔥 büyük alan */
}
#features {
    padding: 140px 0;   /* önce 70-80 ise */
}

.feature-row {
  width: 100%;
}
.feature-text {
  flex: 0 0 45%;
}

.feature-row {
  display: flex;
  flex-direction: column;   /* 🔥 YAN YANA DEĞİL, ALT ALTA */
}
.feature-text {
  margin-bottom: 28px;
}
.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.feature-list {
  max-width: 1800px;
}

.feature-row {
  padding: 48px 64px;
}
/* TEKNOLOJİK NASIL ÇALIŞIR */
.tech-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.tech-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.tech-subtitle {
  text-align: center;
  color: #1d1818;
  font-size: 18px;
  margin-bottom: 60px;
}

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

.tech-card {
  background: #fff;
  border: 1px solid #55545469;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card i {
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
}

.tech-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.tech-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}
.tech-title {
  color: #000; /* tam siyah */
}
.tech-subtitle {
  color: #000;
}
.tech-card h3 {
  color: #000;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: zoom-out;
}

.image-lightbox img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
/* HAMBURGER BUTON */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: #000;
  margin: 5px 0;
  border-radius: 3px;
}

/* MOBİL MENÜ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  padding: 120px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.35s ease;
  z-index: 9998;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* AKTİF */
.mobile-menu.active {
  right: 0;
}

/* MOBİLDE GÖSTER */
@media (max-width: 900px) {
  .logo-fixed nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}
/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #000;
  margin: 5px 0;
}

/* Mobil */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .logo-fixed nav {
    display: none;
    flex-direction: column;
  }

  .logo-fixed nav.open {
    display: flex;
  }
}
/* KAMPANYA SLIDE */
.campaign-slide {
  background: #000;
}

.campaign-badge {
  display: inline-block;
  border: 1px solid #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.campaign-slide h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
}

.campaign-slide p {
  font-size: 18px;
  color: #cfcfcf;
}
.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 8px;
  height: 14px;
  opacity: 0.9;
  animation: fall 3.5s linear forwards;
}

@keyframes fall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}
.feature-row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    mask:
  linear-gradient(#000 0 0) content-box,
  linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.feature-row {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-row:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08);
}
@media (max-width: 768px) {

  .hero-slider {
    height: auto;
    min-height: 100vh;
  }

  .hero-slide {
    height: auto;
    min-height: 100vh;
    padding: 80px 20px 100px;
  }

}
@media (max-width: 768px) {

  .campaign-slide .hero-center {
    text-align: center;
    max-width: 100%;
  }

  .campaign-slide h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .campaign-slide p {
    font-size: 14px;
    opacity: 0.85;
  }

  .campaign-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

}
@media (max-width: 768px) {

  #hizmetler {
    padding: 60px 16px;
  }

  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .feature-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;

    padding: 20px;
    border-radius: 18px;

    background: linear-gradient(
      180deg,
      #111,
      #0b0b0b
    );

    border: 1px solid rgba(255,255,255,0.08);
  }

}
@media (max-width: 768px) {

  .feature-row {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .feature-row:active {
    transform: scale(0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }

}
.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;

  padding: 48px;
  border-radius: 28px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );

  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-image img {
  width: 100%;
  border-radius: 18px;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);

  transition: transform .4s ease, box-shadow .4s ease;
}

.feature-row:hover .feature-image img {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 50px 90px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.1);
}
.feature-text h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .feature-text h3 {
    font-size: 22px;
  }
}
.feature-row::before {
  background: linear-gradient(
    135deg,
    rgba(0,180,255,0.6),
    rgba(0,180,255,0.05),
    rgba(0,180,255,0.3)
  );
}
.feature-row:hover::before {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.4)
  );
}
/* Scroll animasyonu - başlangıç hali */
.feature-row {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.16,.84,.44,1);
}

/* Görününce */
.feature-row.show {
  opacity: 1;
  transform: translateY(0);
}
/* Görsel wrapper gibi davran */
.zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
  position: relative;
}

/* Hover'da hafif zoom */
.zoomable:hover {
  transform: scale(1.04);
}

/* Büyüteç ikonu */
.zoomable::after {
  content: "\f002"; /* FontAwesome büyüteç */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: scale(0.8);
  pointer-events: none;
}

/* Hover olunca ikon görünsün */
.zoomable:hover::after {
  opacity: 1;
  transform: scale(1);
}
/*************************************************/
.feature-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-areas:
    "image text"
    "tags tags";
  gap: 32px;
  margin-bottom: 64px;
  align-items: start;
}
.feature-image {
  grid-area: image;
}

.feature-text {
  grid-area: text;
}

.feature-tags {
  grid-area: tags;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.tag {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text"
      "tags";
  }

  .feature-image img {
    max-width: 100%;
  }

  .feature-tags {
    justify-content: center;
  }
}
.feature-image {
  margin-top: 20px; /* ihtiyaca göre 8–20px arası oynatabilirsin */
}
.feature-tags .tag:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.feature-tags .tag {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #111;
  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;

  transition: all 0.25s ease;
  cursor: default;
}
.feature-tags .tag:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feature-tags .tag {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.feature-tags .tag {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #0b2a55; /* koyu mavi yazı */
  background: #ffffff;

  border: 1.5px solid #2f80ed; /* premium mavi */
  border-radius: 999px;

  transition: all 0.25s ease;
  cursor: default;
}
.feature-tags .tag:hover {
  background: #084390;
  color: #ffffff;
  transform: translateY(-2px);
}
.container {
  max-width: 1400px;   /* 1320 – 1440 arası ideal */
  margin: 0 auto;
  padding: 0 40px;     /* kenarlarda nefes payı */
}
.feature-row {
  max-width: 100%;
}
.feature-card {
  width: 100%;
}
#hizmetler {
  background:
    radial-gradient(circle at left center, rgba(0,123,255,0.08), transparent 60%),
    radial-gradient(circle at right center, rgba(0,123,255,0.08), transparent 60%),
    #000;
}
#hizmetler {
  padding: 80px 0;
}
#hizmetler {
  padding: 80px 0 100px;
}
.container {
  max-width: 1400px;
  padding: 0 40px;
}

#hizmetler {
  background:
    radial-gradient(circle at left center, rgba(0,123,255,0.06), transparent 60%),
    radial-gradient(circle at right center, rgba(0,123,255,0.06), transparent 60%),
    #000;
}
/***************************************************/
/*Görsel*/
.feature-image img {
  transform: scale(1.12);
  transform-origin: left center;
}
/*Mobil*/
