﻿.hisar-services {
    background: #f4f6f8;
    padding: 90px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Sadece bu bölümde container ayarı (global .container'ı bozmaz) */
.hisar-services .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* BAŞLIK */
.hisar-title {
    text-align: center;
    margin-bottom: 50px;
}

.hisar-title h2 {
    font-size: 34px;
    font-weight: 650;
    color: #1c1c1c;
    margin: 0;
}

.title-accent {
    display: block;
    width: 80px;
    height: 3px;
    background: #0b3f6f;
    margin: 14px auto 0;
    border-radius: 999px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

/* KART */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 38px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
    min-height: 170px; /* uzun başlıklar için */
}

/* WATERMARK */
.service-card .watermark {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(11,63,111,0.12) 0%, rgba(11,63,111,0) 70%);
    pointer-events: none;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.service-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: grid;
    place-items: center;
}

.service-card .icon svg {
    width: 60px;
    height: 60px;
    stroke: #0b3f6f;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* TEXT */
.service-card h3 {
    font-size: 18px;
    font-weight: 650;
    color: #222;
    margin: 0;
    line-height: 1.35;

    /* uzun başlıklar taşmasın */
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .hisar-services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 28px 18px;
        min-height: 155px;
    }

    .service-card .icon svg {
        width: 56px;
        height: 56px;
    }

    .hisar-title h2 {
        font-size: 26px;
    }
}


:root{
  --hisar-navy:#0b3f6f;
  --hisar-navy-dark:#082f55;
  --hisar-text:#1f2430;
}

/* HERO GENEL */
.hisar-hero{
  background:#fff;
  padding: 90px 0 80px;
  font-family:'Segoe UI', Arial, sans-serif;
}

.hisar-hero .container{
  max-width: 1400px;   /* 1200 yerine daha geniş */
  width: 100%;
}

/* GRID */
.hisar-hero__grid{
  display:grid;
  /*grid-template-columns: .95fr 1.05fr; /* görsel artık daha geniş */
  grid-template-columns: .95fr 1fr;
  gap:64px;
  align-items:center;
}
/* SOL */
.hisar-hero__title{
  font-size: clamp(34px, 4.2vw, 64px);
  line-height:1.08;
  font-weight:750;
  margin:0 0 18px 0;
  color:var(--hisar-text);
}

.hisar-hero__subtitle{
  font-size: 16px;
  line-height:1.85;
  color:#4b5563;
  max-width: 640px;
  margin:0 0 26px 0;
}

/* BUTONLAR */
.hisar-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hisar-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:.25s;
}

.hisar-btn.primary{
  background:linear-gradient(180deg,var(--hisar-navy),var(--hisar-navy-dark));
  color:#fff;
  box-shadow:0 15px 35px rgba(11,63,111,0.25);
}

.hisar-btn.primary:hover{
  transform:translateY(-2px);
}

.hisar-btn.ghost{
  border:1px solid rgba(11,63,111,0.25);
  color:var(--hisar-navy);
  background:#fff;
}

.hisar-btn.ghost:hover{
  background:#f4f7fb;
  transform:translateY(-2px);
}

/* SAĞ - GÖRSEL */
.hisar-hero__visual{
  width:100%;
}

.hisar-hero__visual .about-image{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.hisar-hero__visual .about-image img{
  width:100%;
  height: clamp(260px, 36vw, 420px);
  object-fit: cover;
  display:block;
}

/* LOGO RENGİ HAFİF DOKUNUŞ */
.hisar-hero__visual .about-image::after{
  content:"";
  position:absolute;
  right:-22px;
  bottom:-22px;
  width:170px;
  height:170px;
  background: radial-gradient(circle, rgba(11,63,111,0.18), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}


@media (max-width: 992px){
  .hisar-hero{
    padding: 60px 0 55px;
  }

  .hisar-hero__grid{
    grid-template-columns: 1fr;
    gap:22px;
  }

  /* Mobilde görsel üstte olsun istersen */
  .hisar-hero__visual{ order: 1; }
  .hisar-hero__content{ order: 2; }

  .hisar-hero__subtitle{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .hisar-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hisar-btn{
    width:100%;
  }
}
