/* --- PAGE HEADER (Inner Pages) --- */
header {
    background: #1f2937;
    color: #fff;
    padding: 15px 0;
}

.page-header {
    background-image: linear-gradient(rgba(26, 37, 48, 0.9), rgba(26, 37, 48, 0.8)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* --- LAYOUT: 2 Columns --- */
.service-details {
    padding: 0;
    background-color: #f9f9f9;
}

.container{
    margin-left: 5%;
    margin-right: 5%;
}

.details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content takes 2/3, Sidebar takes 1/3 */
    gap: 40px;
}

/* Left Content Styling */
.details-content h2, 
.details-content h3 {
    color: #1a2530;
    margin-bottom: 20px;
}

.main-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.spacer {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 40px 0;
}

/* --- Document List Box --- */
/*.doc-box {
    background: #fff;
    padding: 25px;
    border-left: 5px solid #f39c12;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.doc-list {
    list-style: none;
}

.doc-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}*/


/* --- ADVANCED DOCUMENT LIST --- */
.doc-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.doc-list-advanced {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-list-advanced li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.doc-list-advanced li:last-child {
    margin-bottom: 0;
}

.icon-wrap {
    background-color: #fff4e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: #f39c12;
}

.doc-list-advanced .text strong {
    font-size: 1.05rem;
    color: #1a2530;
    display: block;
    margin-bottom: 3px;
}

.doc-list-advanced .text small {
    color: #666;
    font-size: 0.9rem;
}

/* --- Timeline Steps --- */
.timeline {
    position: relative;
    border-left: 3px solid #f39c12;
    margin-left: 20px;
    padding-left: 30px;
}

.step {
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    left: -46px; /* Align with border */
    top: 0;
    width: 32px;
    height: 32px;
    background-color: #f39c12;
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
}

.step-info h4 {
    margin-bottom: 5px;
    color: #1a2530;
}

/* --- RIGHT SIDEBAR (Sticky Form) --- */
.details-sidebar {
    position: relative;
}

.enquiry-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px; /* Sticks to top when scrolling */
}

.enquiry-box h3 {
    margin-bottom: 10px;
    color: #1a2530;
}

.sidebar-form input,
.sidebar-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.full-width {
    width: 100%;
}

.call-now {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.call-now a {
    color: #1a2530;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 900px) {
    .details-layout {
        grid-template-columns: 1fr; /* Stack columns */
    }
    
    .enquiry-box {
        position: static; /* Remove sticky on mobile */
    }
}   