/* Online Claims Page Styles */
.service-hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/service-hero.jpg') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(39, 39, 39, 0.6);
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero-section h1 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    font-family: 'Saira', sans-serif;
}

.service-hero-section p {
    font-family: 'Inter', sans-serif;
}

.service-hero-section .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-hero-section .btn-primary {
    background-color: #FF652F;
    border-color: #FF652F;
}

.service-hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats-section {
    background-color: #FF652F;
    padding: 40px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fd7e14;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-family: 'Saira', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #fd7e14;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Claim Form Section */
.online-claim-form {
    border: 1px solid #e9e9e9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.process-section {
    border-left: 4px solid #FF652F;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #FF652F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h5 {
    color: #272727;
    margin-bottom: 5px;
    font-family: 'Saira', sans-serif;
}

.step-content p {
    color: #666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 101, 47, 0.1);
    color: #FF652F;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 101, 47, 0.25);
    border-color: #FF652F;
}

.accordion-body {
    padding: 1.5rem;
}

/* CTA Section */
.cta-section {
    background-color: #FF652F;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .service-hero-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
    
    .online-claim-form {
        padding: 20px;
    }
}

/* Animations */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* ===== Option 1: Case Studies ===== */
.case-studies-section {
    background-color: #f8f9fa;
}

.case-study-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9e9e9;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.case-study-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-study-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-img img {
    transform: scale(1.05);
}

.case-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #FF652F;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.case-study-content {
    padding: 25px;
}

.case-meta {
    color: #666;
    font-size: 0.9rem;
}

.case-results {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.case-results li {
    margin-bottom: 8px;
}

/* ===== Option 2: Landlord Responsibilities ===== */
.responsibilities-section {
    background-color: #f8f9fa;
}

.responsibility-item {
    padding: 12px 15px;
    background: white;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #e9e9e9;
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    border-color: #FF652F;
    box-shadow: 0 3px 10px rgba(255,101,47,0.1);
}

.form-check-input:checked {
    background-color: #FF652F;
    border-color: #FF652F;
}

.responsibility-visual {
    background: linear-gradient(rgba(39,39,39,0.9), rgba(39,39,39,0.9)), 
                url('../img/law-bg.jpg') center center no-repeat;
    background-size: cover;
    height: 100%;
}

.text-white-80 {
    color: rgba(255,255,255,0.8);
}

/* ===== Option 3: Claim Timeline ===== */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #FF652F;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #FF652F;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9e9e9;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -70px;
}

.timeline-time {
    color: #FF652F;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Responsive timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 15px;
    }
}




/* Trust Badges */
.trust-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.trust-badge {
    transition: all 0.3s ease;
    opacity: 0.8;
}
.trust-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Team Member */
.team-member-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Media Logos */
.media-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.media-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Case Law Cards */
.case-law-card {
    background: white;
    border-radius: 8px;
    border-left: 4px solid #FF652F;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.case-law-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,101,47,0.1);
}





/* Live Counter */
#live-counter {
    font-weight: 700;
    color: #FF652F;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Council Logos */
.council-logo {
    height: 50px;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all 0.3s ease;
}
.council-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* Progress Tracker */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}
.tracker-step {
    text-align: center;
    z-index: 1;
}
.step-marker {
    width: 40px;
    height: 40px;
    background: #ddd;
    color: #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}
.tracker-step.completed .step-marker,
.tracker-step.active .step-marker {
    background: #FF652F;
    color: white;
}
.progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #eee;
    z-index: 0;
}
.progress-fill {
    height: 100%;
    background: #FF652F;
    transition: width 0.5s ease;
}

/* Response Simulator */
.response-card {
    min-height: 250px;
    border-left: 4px solid #FF652F;
}