/* =========== MODERN SERVICE HERO SECTION ========== */

.service-hero {
    padding: 10px 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d2b77b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}

/* Label line */
.hero-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #d2b77b;
    transform: translateY(-50%);
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-hero p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.5rem;
}

/* Modern Button Styling */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #000000;
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #d2b77b;
}

.hero-btn:hover {
    background: #d2b77b;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(210, 183, 123, 0.25);
}

.hero-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* ======================================
   RESPONSIVE ADJUSTMENTS
====================================== */

@media (max-width: 991px) {
    .service-hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-label {
        padding-left: 0;
    }

    .hero-label::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }

    .hero-btn {
        width: 100%;
    }
}

/* =========================
   Challenges Section
========================= */

.challenges-section {
    background: #ffffff;
}

.challenge-card {
    background: #ffffff;
    border: 1px solid rgba(210, 183, 123, 0.25);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #d2b77b;
}

.challenge-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #000000;
    color: #d2b77b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.challenge-text h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000000;
}

.challenge-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* ben */

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Scrollable Container */
.custom-scroll {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #d2b77b;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #b89b5f;
}

.custom-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #000000;
    color: #d2b77b;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.text-secondary {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555 !important;
}

/* ========== CTA =========== */

.cta-card {
    border: 1px solid rgba(210, 183, 123, 0.3);
    color: #ffffff;
}

/* Button Styling */
.btn-cta {
    background-color: #d2b77b;
    color: #000000 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #b89b5f;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(210, 183, 123, 0.3);
    transform: translateY(-1px);
}

/* Heading color adjustment */
.cta-card h2 {
    letter-spacing: -0.01em;
    color: #ffffff;
}

.cta-card p {
    color: rgba(255,255,255,0.75);
}