/*
 * Services Page Styles - Mahati Interior Design
 * Modern service showcase with interactive elements and pricing cards
 * Author: Mahati Design Team
 * Last Updated: 2025
 */

/* ===== SERVICES HERO SECTION ===== */
.services-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8), rgba(255, 107, 53, 0.6));
    z-index: -1;
}

.services-hero .hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero .hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== MAIN SERVICES SECTION ===== */
.main-services {
    padding: 50px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-card-clean {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 3px solid #ff6b35;
}

.services-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.services-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #ff6b35;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.services-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ff6b35;
    font-size: 1.5rem;
}

.services-card-clean h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-card-clean p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.services-btn-clean {
    background: #ff6b35;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-btn-clean:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: #fff;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* ===== SPECIALIZED SERVICES SECTION ===== */
.specialized-services {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.specialized-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.specialized-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.specialized-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.specialized-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.specialized-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== SERVICE PROCESS SECTION ===== */
.service-process {
    padding: 50px 0;
    background: #2c2c2c;
    color: #fff;
}

.service-process .section-header h2 {
    color: #fff;
}

.service-process .section-header p {
    color: #ccc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ff6b35;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.process-step p {
    color: #ccc;
    line-height: 1.6;
}

/* ===== PRICING PLANS SECTION ===== */
.pricing-plans {
    padding: 50px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: #28a745;
}

.pricing-features .fa-times {
    color: #dc3545;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* ===== ESTIMATE SECTION ===== */
.estimate-section {
    padding: 6.5rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.estimate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 0;
}

.estimate-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.estimate-section .section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.estimate-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.estimate-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
    border-radius: 3px;
}

.estimate-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.estimate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3.5rem auto 6rem;
    max-width: 1200px;
    padding: 0 1rem;
}

.estimate-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.estimate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
    transition: all 0.4s ease;
    z-index: 2;
}

.estimate-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.estimate-card:hover::before {
    height: 6px;
    background: linear-gradient(90deg, #ff8e53, #ff6b35);
}

.estimate-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.estimate-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.estimate-card:hover .estimate-image::before {
    opacity: 1;
}

.estimate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.estimate-card:hover .estimate-image img {
    transform: scale(1.08);
}

.estimate-card-content {
    padding: 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.estimate-card h3 {
    font-size: 1.7rem;
    color: #2c2c2c;
    margin: 0 0 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.estimate-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
    border-radius: 3px;
    transition: all 0.4s ease;
}

.estimate-card:hover h3::after {
    width: 70px;
    background: linear-gradient(90deg, #ff8e53, #ff6b35);
}

.estimate-card p {
    color: #666;
    margin: 0 0 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
}

.estimate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.estimate-btn:hover {
    background: linear-gradient(135deg, #e65100, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.estimate-btn:hover::after {
    display: none;
}

.estimate-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    position: relative;
    color: white;
}

.estimate-btn:hover i {
    transform: translateX(5px);
}

/* ===== WORKFLOW STEPS ===== */
.workflow-section {
    width: 100%;
    background: #000;
    margin: 6rem 0 0;
    position: relative;
}

.workflow-steps {
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.workflow-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

.workflow-steps h3 {
    font-size: 2rem;
    margin: 0 0 4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 0 auto 4rem;
    max-width: 100%;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 20%;
    padding: 0 15px;
    box-sizing: border-box;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    border: 3px solid #fff;
    transition: all 0.3s ease;
    margin: 0 auto 20px;
}

.step-text {
    font-size: 0.95rem;
    margin-top: 70px ;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 120px;
}

/* Hover Effects */
.timeline-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.timeline-step:hover .step-text {
    color: #917e7e;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timeline-step {
        width: 33.333%;
        /* margin-bottom: 2rem; */
    }
}

@media (max-width: 768px) {
    .timeline-step {
        width: 50%;
    }
    .step-text {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .timeline-step {
        width: 100%;
    }
    
    .step-text {
        margin-top: 0;
    }
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65100 0%, #ff6b35 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.consultation-btn:hover::before {
    opacity: 1;
}

.consultation-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.consultation-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (min-width: 992px) {
    .estimate-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .workflow-steps {
        padding: 5rem 3rem;
    }
    
    .timeline {
        padding: 0 2rem;
    }
}

@media (max-width: 991px) {
    .estimate-section {
        padding: 4.5rem 0;
    }
    
    .estimate-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .estimate-image {
        height: 220px;
    }
    
    .workflow-steps {
        padding: 4rem 2rem;
        margin: 4rem auto 0;
        max-width: 600px;
    }
    
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 0;
        margin-bottom: 3rem;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 21px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, #f3f3f3, #f4f4f4);
        transform: none;
    }
    
    .timeline-step {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        text-align: left;
        padding-left: 80px;
        position: relative;
        align-items: flex-start;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        transform: translateX(-50%);
        left: 30px;
    }
    
    .step-text {
        text-align: left;
        padding: 1rem;
        /* background: #f9f9f9; */
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .estimate-section .section-header h2 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .estimate-section .section-header p {
        padding: 0 1rem;
    }
    
    .estimate-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 2.5rem auto 5rem;
        padding: 0 1.5rem;
    }
    
    .estimate-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .estimate-image {
        height: 220px;
    }
    
    .workflow-steps {
        margin: 3rem auto 0;
        padding: 3rem 1.5rem;
        border-radius: 12px;
    }
    
    .workflow-steps h3 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    
    .timeline-step {
        padding-left: 70px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: 25px;
    }
    
    .consultation-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .estimate-section {
        padding: 3.5rem 0;
    }
    
    .estimate-section .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .estimate-section .section-header p {
        font-size: 1.05rem;
        max-width: 90%;
        margin: 1rem auto 0;
    }
    
    .estimate-cards {
        padding: 0 1rem;
    }
    
    .estimate-card {
        border-radius: 12px;
    }
    
    .estimate-image {
        height: 200px;
    }
    
    .estimate-card-content {
        padding: 1.75rem 1.5rem 2.25rem;
    }
    
    .estimate-card h3 {
        font-size: 1.6rem;
    }
    
    .estimate-card p {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }
    
    .estimate-card {
        padding: 2rem 1.25rem;
    }
    
    .estimate-card h3 {
        font-size: 1.4rem;
    }
    
    .workflow-steps {
        padding: 2.5rem 1.25rem;
        margin: 2.5rem auto 0;
    }
    
    .workflow-steps h3 {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        left: 22px;
    }
    
    .step-text {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .consultation-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== BUDGET HOMES SECTION ===== */
.budget-homes {
    padding: 50px 0;
    background: #f8f9fa;
}

.budget-homes .section-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.budget-homes .section-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.budget-cta-header {
    text-align: center;
    margin-top: 2rem;
}

.budget-cta-header .cta-button {
    background: #ff6b35;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.budget-cta-header .cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.budget-carousel-container {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

/* Mobile-specific carousel container fixes */
@media (max-width: 768px) {
    .budget-carousel-container {
        overflow-x: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

.budget-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 80px;
}

.budget-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: max-content;
    padding: 20px 0;
    will-change: transform;
}

.budget-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.budget-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.budget-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.budget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.budget-card:hover .budget-image img {
    transform: scale(1.05);
}

.budget-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
}

.budget-content {
    padding: 1.5rem;
    text-align: left;
    background: #fff;
}

.budget-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.budget-details {
    margin-bottom: 1.2rem;
}

.budget-details > div {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    color: #666;
}

.budget-details strong {
    color: #2c3e50;
    font-weight: 600;
}

.budget-cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.budget-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.budget-carousel-container .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 15;
}

.budget-carousel-container .carousel-nav .prev-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.budget-carousel-container .carousel-nav .next-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.budget-carousel-container .carousel-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 15;
    pointer-events: all;
}

.budget-carousel-container .carousel-btn:hover {
    background: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.budget-carousel-container .carousel-btn:active {
    transform: scale(0.95);
}

.budget-carousel-container .carousel-btn i {
    font-size: 1.2rem;
    color: #666;
    transition: color 0.3s ease;
}

.budget-carousel-container .carousel-btn:hover i {
    color: #fff;
}

@media (max-width: 768px) {
    .budget-carousel {
        padding: 0 60px;
    }
    
    .budget-card {
        flex: 0 0 280px;
    }
    
    .budget-carousel-container .carousel-nav .prev-btn {
        left: 15px;
    }
    
    .budget-carousel-container .carousel-nav .next-btn {
        right: 15px;
    }
    
    .budget-carousel-container .carousel-btn {
        width: 45px;
        height: 45px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    }
    
    .budget-carousel-container .carousel-btn i {
        font-size: 1.1rem;
    }
    
    .budget-content h3 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .budget-details > div {
        font-size: 0.75rem;
    }
    
    .budget-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .budget-carousel {
        padding: 0 50px;
    }
    
    .budget-card {
        flex: 0 0 260px;
    }
    
    .budget-carousel-container .carousel-nav .prev-btn {
        left: 10px;
    }
    
    .budget-carousel-container .carousel-nav .next-btn {
        right: 10px;
    }
    
    .budget-carousel-container .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .budget-carousel-container .carousel-btn i {
        font-size: 1rem;
    }
    
    .budget-image {
        height: 200px;
    }
    
    .budget-content {
        padding: 1rem;
    }
    
    .budget-content h3 {
        font-size: 0.9rem;
    }
    
    .budget-details > div {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .budget-cta-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .budget-homes .section-header h2 {
        font-size: 1.8rem;
    }
    
    .budget-homes .section-header p {
        font-size: 1rem;
    }
}

/* ===== CTA SECTION ===== */
.services-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #ff6b35;
    color: #fff;
}

.cta-button.primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #2c2c2c;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .specialized-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialized-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .services-hero {
        height: 60vh;
    }
    
    .services-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
    
    .specialized-item {
        padding: 1.5rem;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
