/* ================= SERVICE DETAILS PAGE STYLES ================= */
.service-hero {
    background: linear-gradient(135deg, #052066 0%, #083199 100%);
    padding: 70px 0 60px 0;
    color: #ffffff;
    position: relative;
}

.service-hero-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid #ff6b35;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.service-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 800px;
}

.service-hero p {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 720px;
    line-height: 1.6;
}

/* 2-Column Main Section */
.service-detail-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.service-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
    align-items: flex-start;
}

/* Left Column: Content & Image */
.service-main-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-featured-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-main-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-main-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Sub-Services Checklist Box */
.sub-service-breakdown {
    margin: 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.breakdown-item {
    background: #f1f5f9;
    padding: 22px;
    border-radius: 12px;
    border-left: 4px solid #083199;
}

.breakdown-item h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-item h4 i {
    color: #083199;
}

.breakdown-item p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Right Column: Sticky Lead Capture Form */
.service-sidebar {
    position: sticky;
    top: 90px;
}

.quote-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(8, 49, 153, 0.08);
}

.quote-form-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.quote-form-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #083199;
    box-shadow: 0 0 0 3px rgba(8, 49, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit-quote {
    width: 100%;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-quote:hover {
    background: #e0531e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.sidebar-support-badge {
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-support-badge i {
    font-size: 2rem;
    color: #083199;
}

.sidebar-support-badge div h5 {
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.sidebar-support-badge div p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .service-layout-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
    .service-hero h1 {
        font-size: 2.2rem;
    }
    .sub-service-breakdown {
        grid-template-columns: 1fr;
    }
}