
/* HERO -------------------------------------------------- */
.hero-title {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 2.2rem; /* ~35px */
  color: #d9d9d9;
}

.hero-text {
  font-size: 1.1rem;
  color: #d9d9d9;
  margin-bottom: 2.5rem; /* ~40px */
}

.btn-hero,
a.btn-hero,
button.btn-hero {
  background-color: #F15C04 !important;
  color: #fff !important;
  border-radius: 35px;
  padding: 1rem 2.2rem !important;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: .25s all ease;
}

  .btn-hero:hover {
    background-color: #ff7a24 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.45);
  }

/* IT CONSULTANCY KARTLARI -------------------------------- */
.feature-card {
  background: #fff;
  border: 1px solid #EEF0F4;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(17,23,41,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(17,23,41,.10);
  }

.pill {
  display: inline-block;
  width: 100%;
  background: #F8F9FC;
  border: 1px solid #EEF0F4;
  border-radius: 999px;
  padding: .6rem 1rem;
  text-align: center;
}

.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* VIDEO SERVICES BÖLÜMÜ --------------------------------- */
#Services {
  min-height: 100vh;
  position: relative;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.services-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
  z-index: 1;
}

.services-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

/* 3x3 SERVICES GRID ------------------------------------- */
.service-grid-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #000; /* arkası da koyu olsun, beyaz görünmesin */
  font-family: 'Poppins', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 0; /* kenar yuvarlaklığını kaldır – tam ekran */
  overflow: hidden;
}

.service-card {
  position: relative;
  color: #fff;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}


/* İleride kullanmak istersen hazır dursun */
.service-card--tall {
  grid-row: span 1;
}

.service-card--wide {
  grid-column: span 1;
}

.service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.10) );
  transition: background .4s ease;
}

.service-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem;
}


.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .1rem;
  color: white;
}

.service-text {
  font-size: .95rem;
  opacity: .9;
  max-width: 260px;
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .3rem;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
}

.service-card:hover .service-bg {
  transform: scale(1.08) translateX(-4px);
}

.service-card:hover .service-overlay {
  background: linear-gradient( to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1) );
}

.service-card:hover .service-link-btn {
  background: #F15C04;
  transform: translateX(3px);
}

/* REVEAL ANİMASYONU ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.it-section {
  background: #F8F9FC;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  font-family: 'Poppins', sans-serif;
}

/* üstteki mor etiket */
.it-pill {
  background: #EAE8FF;
  color: #2B2862;
}

/* başlık içindeki accent span */
.it-heading-accent {
  color: #2B2862;
  position: relative;
}

.it-heading-accent-img {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 34px;
  height: auto;
  opacity: .9;
}

/* 2x2 kolaj grid */
.it-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 sütun sabit */

  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

/* her kart */
.it-card {
  padding: 2.4rem 2.8rem;
  border-right: 1px solid #EEF0F4;
  border-bottom: 1px solid #EEF0F4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* sağ sütundaki kartlarda sağ border olmasın */
.it-grid > .it-card:nth-child(2n) {
  border-right: none;
}

/* son satırdaki kartlarda alt border olmasın */
.it-grid > .it-card:nth-last-child(-n+2) {
  border-bottom: none;
}

/* ikon çerçevesi */
.it-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #F1F3FF;
  color: #2B2862;
}

/* madde işaretleri */
.check {
  font-weight: 600;
  color: #2B2862;
}
/* CONTACT – bölüm arka planı */
.contact-section {
  background: #050816; /* hero/video ile aynı koyu ton ailesi */
  color: #fff;
}

/* Üst etiket */
.contact-pill {
  background: rgba(241, 92, 4, 0.12);
  color: #F15C04;
  border-radius: 999px;
  padding: .4rem 1.2rem;
  font-weight: 500;
}

.contact-heading-accent {
  color: #fff;
}

/* Ana panel – tek blok hissi */
.contact-shell {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
  margin-top: 2.5rem;
}

/* SOL panel */
.contact-left {
  position: relative;
  min-height: 100%;
}

.contact-left-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1);
  transform: scale(1.05);
}

.contact-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 135deg, rgba(5, 8, 22, 0.95), rgba(5, 8, 22, 0.85), rgba(241, 92, 4, 0.35) );
}

.contact-left-inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.5rem;
  color: #fff;
}

.contact-left-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Sol taraftaki ikon badge'leri */
.contact-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #F5F5FF;
}

.contact-icon-badge-success {
  background: rgba(34, 197, 94, 0.16);
  color: #BBF7D0;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
}

  .contact-link:hover {
    text-decoration: underline;
  }

/* SAĞ panel */
.contact-right {
  background: #ffffff;
  padding: 2.5rem 2.5rem;
  height: 100%;
}

.contact-right-text {
  color: #6b7280;
}

/* Form alanları */
.contact-input {
  border-radius: 14px;
  border-color: #E5E7EB;
  padding-top: .75rem;
  padding-bottom: .75rem;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

  .contact-input:focus {
    border-color: #F15C04;
    box-shadow: 0 0 0 0.15rem rgba(241, 92, 4, 0.18);
  }

/* Buton – hero ile uyumlu */
.btn-contact {
  background: #F15C04;
  color: #fff;
  border-radius: 999px;
  padding: .9rem 2.3rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: .25s all ease;
}

  .btn-contact:hover {
    background: #ff7a24;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  }

/* FRONT NAVBAR DARALTMA */
.layout-navbar {
  min-height: 52px !important; /* yükseklik */
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

  /* Menü içindeki linkleri küçültme */
  .layout-navbar .nav-link {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  /* Logo hizasını azaltma */
  .layout-navbar .navbar-brand {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }



