/* SPACING */
.mt-80 {
    margin-top: 80px;
}

/* HERO */
.service-hero-block {
    margin-bottom: 40px;
}

.service-hero-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.75)
    );
}

.service-hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 600px;
    color: #fff;
}

.service-hero-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.service-hero-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

/* BUTTON */
.hero-btn {
    background: #fff;
    color: #000;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* CARD */
.modern-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.modern-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.service-img-box {
    position: relative;
    height: 360px;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.75)
    );
}

/* BADGE */
.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
}

/* CTA */
.image-cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000000;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
}

/* TEXT */
.service-text {
    padding: 25px;
}

/* RIGHT SIDE */
.modern-info h2 {
    font-size: 34px;
}

.highlight-text {
    color: #C94A2E;
    margin-bottom: 10px;
}

/* LIST */
.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 8px;
}

/* CTA BUTTON */
.primary-btn {
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
}

.primary-btn:hover {
    background: #C94A2E;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .service-hero-image {
        height: 320px;
    }

    .service-hero-content {
        left: 20px;
        bottom: 20px;
    }

    .mt-80 {
        margin-top: 40px;
    }
}


/* description, benefits, faq */
/* WRAPPER */
.service-info-tabs {
    margin-top: 60px;
}

/* TAB BUTTONS */
.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-buttons .tab-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-buttons .tab-btn:hover {
    background: #111;
    color: #fff;
}

.tab-buttons .active-btn {
    background: #111;
    color: #fff;
}

/* CONTENT BOX */
.tabs-content .tab {
    display: none;
}

.tabs-content .active-tab {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TEXT */
.tabs-content .content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.tabs-content .content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* FAQ */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}