* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.hizmetler {
    padding: 100px 60px;
    background-color: #FDF5E6; /* Krem/bej arkaplan rengi */
    position: relative;
    overflow: hidden;
}

/* Dekoratif dalga çizgisi */
.dalga-cizgi {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('assets/dalga-cizgi.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.hizmetler-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 100px;
}

.hizmetler-baslik-bolumu {
    display: flex;
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.hizmetler-aciklama {
    max-width: 420px;
    margin-right: 60px;
    flex: 1;
}

.hizmetler-aciklama h2 {
    font-size: 4.2em;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
    font-family: 'Futura PT', sans-serif;
}

.hizmetler-aciklama .aciklama {
    font-size: 1.3em;
    line-height: 1.6;
    color: #444;
    font-family: 'Futura PT', sans-serif;
    font-weight: 300;
    max-width: 100%;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    text-align-last: left;
    -webkit-font-smoothing: antialiased;
    font-smooth: always;
}

/* Kartlar */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Üst iki kart */
.ust-kartlar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: stretch;
    width: calc(50% + 30px);
    margin-left: auto;
    margin-right: 0;
    gap: 30px;
    margin-bottom: 20px;
}

.ust-kartlar .hizmet-karti:first-child {
    grid-column: 3 / 4;
}

.ust-kartlar .hizmet-karti:nth-child(2) {
    grid-column: 4 / 5;
}

.alt-kartlar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 30px;
}

.hizmet-karti {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 410px;
    min-width: 270px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.hizmet-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.kart-baslik {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    height: 60px;
}

.ikon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.ikon img {
    width: 25px;
    height: 25px;
}

.hizmet-karti h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Futura PT', sans-serif;
}

.hizmet-karti ul {
    list-style: none;
    margin-top: 5px;
    flex: 1;
    overflow: hidden;
}

.hizmet-karti ul li {
    margin-bottom: 8px;
    position: relative;
    color: #666;
    font-size: 0.98em;
    line-height: 1.3;
    padding-left: 12px;
    font-family: 'Futura PT', sans-serif;
    font-weight: 300;
}

.hizmet-karti ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #999;
}

.pembe .ikon { background-color: #F8A5D1; }
.sari .ikon { background-color: #FFD700; }
.mavi .ikon { background-color: #6CC1FF; }
.kirmizi .ikon { background-color: #FF6B6B; }
.mor .ikon { background-color: #C792EA; }
.yesil .ikon { background-color: #7ED957; }

.hizmet-karti.mavi .kart-baslik h3 {
    margin-top: 10px;
}

/* Responsive Tasarım */
@media (max-width: 1400px) {
    .hizmetler-container {
        padding: 0 80px;
    }
    
    .hizmetler-aciklama {
        max-width: 450px;
        margin-right: 40px;
    }
    
    .ust-kartlar {
        width: calc(100% - 490px);
    }
}

@media (max-width: 1024px) {
    .hizmetler-container {
        padding: 0 40px;
    }

    .hizmetler-baslik-bolumu {
        flex-direction: column;
    }
    
    .hizmetler-aciklama {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .ust-kartlar {
        width: 100%;
        gap: 20px;
    }

    .alt-kartlar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hizmetler {
        padding: 40px 15px;
    }

    .ust-kartlar, .alt-kartlar {
        grid-template-columns: 1fr;
    }
    
    .hizmetler-grid > div {
        grid-column: 1 / span 1 !important;
    }
}

.sari-daire-yazi {
  /* background: #f9d376; */
  color: #222;
  width: 1000px;
  height: 1000px;
  max-width: 99vw;
  max-height: 99vw;
  margin: 40px auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 40px;
}

.sari-daire-yazi p {
  font-size: 2.3rem;
  line-height: 1.25;
  margin: 0 0 38px 0;
  font-weight: 400;
}

.sari-daire-yazi b {
  font-weight: 900 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
}

.sari-daire-yazi b.imeraspro {
  font-weight: 1000;
}

.sari-daire-yazi .thin-text {
  font-weight: 300;
}

@media (max-width: 700px) {
  .sari-daire-yazi {
    width: 99vw;
    height: 99vw;
    padding: 20px;
  }
  .sari-daire-yazi p {
    font-size: 1.15rem;
  }
}