/* SERVICES PAGE STYLES */

/* 1. HERO SECTION */
.service-hero {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #eee;
}

/* 2. SECTION LAYER STYLES */
.soft-layer {
    background: linear-gradient(135deg, #f0f4f8, #f7f7f7);
    padding: 60px 20px;
}

.soft-layer.dark-soft {
    background: linear-gradient(135deg, #e6ecf1, #dee3e9);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* 3. SERVICE SECTION */
.service-section {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
    flex-wrap: wrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-section.reverse {
    flex-direction: row-reverse;
}

.service-section img {
    max-width: 80%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service-section img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-section:hover {
    transform: translateY(-5px);
}

.content-left,
.content-right {
    flex: 1 2 550px;
}

/* 4. HEADINGS & TEXT */
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1e2b3c;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.service-subtext,
.service-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-box {
    background: #f5f7fa;
    border-left: 4px solid #4fc3f7;
    padding: 1em 1.5em;
    font-style: italic;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 5. LIST STYLES */
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9800;
    font-size: 1rem;
    line-height: 1.4;
}

/* 6. BUTTONS (CTA) */
.btn {
    display: inline-block;
    margin: 8px 12px;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.btn.primary {
    background-color: #f57c00;
    color: #fff;
}

.btn.primary:hover {
    background-color: #d65e00;
}

.btn.secondary {
    background-color: #fff;
    border: 2px solid #f57c00;
    color: #f57c00;
}

.btn.secondary:hover {
    background-color: #fef1e6;
}

/* 7. RESPONSIVE */
@media (max-width: 768px) {
    .service-hero {
        height: 240px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-section,
    .service-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 16px;
    }

    .service-section img {
        max-width: 100%;
    }

    .content-left,
    .content-right {
        flex: 1 1 100%;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .service-subtext,
    .service-description,
    .section-subtext {
        font-size: 1rem;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 10px auto;
    }
}

/* FIRE INTRO */
.offer-block-modern {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 48px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.85), rgba(237, 242, 247, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.offer-text h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.offer-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.highlight {
    color: #d84315;
    font-weight: 700;
}

.accent {
    color: #121212;
    font-weight: 700;
}

/* Responsive Styling for Fire Intro */
@media (max-width: 768px) {
    .offer-block-modern {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .icon-box {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .offer-text h3 {
        font-size: 1.3rem;
    }

    .offer-text p {
        font-size: 0.95rem;
    }
}

/* FIRE DUAL SECTION */
.fire-dual-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
    max-width: 820px;
    margin-inline: auto;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ff6d00;
    margin-bottom: 16px;
}

.section-subtext {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

/* Yeni kutu düzeni */
.fire-dual-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    max-width: 1180px;
    margin-inline: auto;
}

/* Kutular modern kart stilinde */
.fire-dual-box {
    background: #ffffff;
    border-radius: 18px 18px 48px 18px;
    padding: 40px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-left: 8px solid #ffa000;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.fire-dual-box:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
}

/* Başlık */
.fire-dual-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #d84315;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* Liste stili – alışılmışın dışında ikonla */
.fire-dual-box .service-list {
    margin: 0;
    padding: 0;
}

.fire-dual-box .service-list li {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 14px;
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
}

.fire-dual-box .service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9800;
    font-size: 1rem;
    line-height: 1.4;
}

/* Gate Image Styles */
.gate-img-large {
    width: 100%;
    max-width: 640px;
    max-height: 440px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
}

/* Mini CTA Modern */
.mini-cta-modern {
    background: linear-gradient(135deg, #e97634, #ffb347);
    color: #fff;
    background-color: #e76f28;
    text-align: center;
    padding: 60px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 800px;
    animation: fadeInUp 0.6s ease-in-out;
}

.mini-cta-modern h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.mini-cta-modern p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.mini-cta-modern .btn.primary {
    background-color: #fff;
    color: #e76f28;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.mini-cta-modern .btn.primary:hover {
    background-color: #fce2cc;
}

/* Optional Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .fire-dual-section {
        padding: 60px 20px;
    }

    .fire-dual-box {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .mini-cta-modern {
        padding: 40px 20px;
        margin: 30px 16px;
    }

    .mini-cta-modern h2 {
        font-size: 1.6rem;
    }

    .mini-cta-modern p {
        font-size: 1rem;
    }

    .mini-cta-modern .btn.primary {
        font-size: 0.95rem;
        padding: 10px 24px;
    }

    .gate-img-large {
        max-width: 100%;
        height: auto;
    }

    .highlight-box {
        font-size: 0.95rem;
    }

    .service-list li {
        font-size: 0.95rem;
        padding-left: 24px;
    }
}