/* Service Hero Section */
.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: #FF652F;
    opacity: 0.8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff652f;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-family: 'Saira', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #FF652F;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Service Cards */
.service-card {
    background: #fff;
    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;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FF652F;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #272727;
    margin-bottom: 15px;
    font-family: 'Saira', sans-serif;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-list li {
    margin-bottom: 8px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.service-list i {
    margin-right: 8px;
}

.btn-primary {
    background-color: #FF652F;
    border-color: #FF652F;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e05a2a;
    border-color: #e05a2a;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
}

.process-step {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9e9e9;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #FF652F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    font-family: 'Saira', sans-serif;
}

.step-content h4 {
    color: #272727;
    margin-bottom: 10px;
    font-family: 'Saira', sans-serif;
}

.step-content p {
    color: #666;
    font-family: 'Inter', sans-serif;
}

/* Calculator Section */
.calculator-section {
    background-color: #f8f9fa;
}

.calculator-result {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-family: 'Saira', sans-serif;
}

.calculator-result ul {
    list-style: none;
    padding-left: 0;
}

.calculator-result ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.calculator-result ul li:before {
    content: "•";
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Advantage Cards */
.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9e9e9;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.advantage-card h3 {
    color: #272727;
    margin-bottom: 15px;
    font-family: 'Saira', sans-serif;
}

.advantage-card p {
    color: #666;
    font-family: 'Inter', sans-serif;
}

/* CTA Section */
.cta-section {
    background-color: #FF652F;
}

.cta-section h2 {
    font-family: 'Saira', sans-serif;
}

.cta-section p {
    font-family: 'Inter', sans-serif;
}

/* 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;
    }
    
    .calculator-section .row > div {
        margin-bottom: 30px;
    }
}

/* Animation for stats counter */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee animation for topbar */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

/* ===== 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;
    }
}







