/* HIZMET PAGES SPECIFIC CSS */

.service-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.service-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle dark overlay for text readability */
}

.service-hero-title {
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    /* As seen in design */
    line-height: 1.2;
}

/* Base text content */
.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content p {
    font-size: 18px;
    color: var(--primary-blue);
    line-height: 1.8;
    font-weight: 300;
}

/* Elements for Havuz Sistemleri (Image 20) */
.havuz-hero {
    /* inherits from service-hero */
}

.havuz-title {
    font-size: 80px;
    color: #40e0d0;
    /* Cyan color from design "HAVUZ SİSTEMLERİ" */
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.section-sub-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-top: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.havuz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.havuz-item {
    text-align: center;
}

.havuz-item-title {
    color: var(--primary-blue);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}

.havuz-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #eee;
}

.service-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-list li {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 300;
}
@media (max-width: 768px) {
  .havuz-grid { grid-template-columns: 1fr; gap: 20px; }
  .havuz-title { font-size: 36px; text-align: center; }
  .service-hero-title { font-size: 32px; text-align: center; }
}
