/* Call to Action Section */
.westcotts-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: #ecebe9;
    position: relative;
}

.westcotts-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.westcotts-cta-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.westcotts-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}

.westcotts-cta h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #af8c59;
}

.westcotts-cta p {
    font-size: 1.3rem;
    margin-bottom: 36px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.westcotts-cta-btn {
    background-color: #af8c59;
    color: #ecebe9;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(175, 140, 89, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.westcotts-cta-btn:hover {
    background-color: #c4a470;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(175, 140, 89, 0.5);
}

.westcotts-cta-btn:active {
    transform: translateY(-1px);
}

/* Services List Section */
.westcotts-services-list {
    padding: 100px 0;
    background-color: #ecebe9;
}

.westcotts-services-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.westcotts-services-list h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: #4d5153;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}

.westcotts-services-list h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #af8c59;
}

.westcotts-services-list p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #4d5153;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.westcotts-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.westcotts-service-list {
    list-style: none;
}

.westcotts-service-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    padding: 12px 0;
    transition: transform 0.2s ease;
    color: #4d5153;
}

.westcotts-service-list li:hover {
    transform: translateX(5px);
}

.westcotts-service-list i {
    color: #af8c59;
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* Service Areas Section */
.westcotts-areas {
    padding: 100px 0;
    background-color: #ffffff;
}

.westcotts-areas-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.westcotts-areas h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: #4d5153;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}

.westcotts-areas h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #af8c59;
}

.westcotts-areas p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #4d5153;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.westcotts-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.westcotts-area-box {
    background-color: #ecebe9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.westcotts-area-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #af8c59;
    color: #ecebe9;
}

.westcotts-area-box i {
    font-size: 2.5rem;
    color: #af8c59;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.westcotts-area-box:hover i {
    color: #ecebe9;
}

.westcotts-area-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #4d5153;
    font-weight: 600;
    transition: color 0.3s ease;
}

.westcotts-area-box:hover h3 {
    color: #ecebe9;
}

.westcotts-area-box p {
    font-size: 1rem;
    color: #4d5153;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.westcotts-area-box:hover p {
    color: #ecebe9;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .westcotts-cta {
        padding: 80px 0;
    }
    
    .westcotts-cta h2 {
        font-size: 2.4rem;
    }
    
    .westcotts-cta p {
        font-size: 1.2rem;
        margin-bottom: 32px;
    }
    
    .westcotts-cta-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .westcotts-services-list,
    .westcotts-areas {
        padding: 80px 0;
    }
    
    .westcotts-services-list h2,
    .westcotts-areas h2 {
        font-size: 2.4rem;
    }
    
    .westcotts-services-list p,
    .westcotts-areas p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .westcotts-services-grid {
        gap: 50px;
    }
    
    .westcotts-service-list li {
        font-size: 1rem;
    }
    
    .westcotts-areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .westcotts-area-box {
        padding: 35px 25px;
    }
    
    .westcotts-area-box i {
        font-size: 2.2rem;
    }
    
    .westcotts-area-box h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .westcotts-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .westcotts-cta-content {
        max-width: 500px;
        padding: 0 20px;
    }
    
    .westcotts-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 32px;
    }
    
    .westcotts-cta p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .westcotts-cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .westcotts-services-list,
    .westcotts-areas {
        padding: 80px 0;
    }
    
    .westcotts-services-content,
    .westcotts-areas-content {
        max-width: 500px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .westcotts-services-list h2,
    .westcotts-areas h2 {
        font-size: 2.2rem;
        margin-bottom: 32px;
    }
    
    .westcotts-services-list p,
    .westcotts-areas p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .westcotts-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }
    
    .westcotts-service-list li {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .westcotts-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .westcotts-area-box {
        padding: 30px 20px;
    }
    
    .westcotts-area-box i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .westcotts-area-box h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .westcotts-area-box p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .westcotts-cta {
        padding: 60px 0;
    }
    
    .westcotts-cta-content {
        max-width: 90%;
        padding: 0 16px;
    }
    
    .westcotts-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }
    
    .westcotts-cta h2::after {
        width: 100px;
    }
    
    .westcotts-cta p {
        font-size: 1rem;
        margin-bottom: 36px;
    }
    
    .westcotts-cta-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .westcotts-services-list,
    .westcotts-areas {
        padding: 60px 0;
    }
    
    .westcotts-services-content,
    .westcotts-areas-content {
        max-width: 90%;
        padding: 0 16px;
    }
    
    .westcotts-services-list h2,
    .westcotts-areas h2 {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }
    
    .westcotts-services-list h2::after,
    .westcotts-areas h2::after {
        width: 100px;
    }
    
    .westcotts-services-list p,
    .westcotts-areas p {
        font-size: 1rem;
        margin-bottom: 36px;
    }
    
    .westcotts-services-grid {
        gap: 36px;
        max-width: 100%;
    }
    
    .westcotts-service-list li {
        font-size: 0.9rem;
        margin-bottom: 18px;
        gap: 12px;
    }
    
    .westcotts-service-list i {
        font-size: 1.2rem;
        width: 20px;
    }
    
    .westcotts-areas-grid {
        gap: 18px;
        max-width: 100%;
    }
    
    .westcotts-area-box {
        padding: 25px 16px;
    }
    
    .westcotts-area-box i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .westcotts-area-box h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .westcotts-area-box p {
        font-size: 0.85rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .westcotts-cta-content,
    .westcotts-services-content,
    .westcotts-areas-content {
        animation: none;
    }
    
    .westcotts-cta {
        background-attachment: scroll;
    }
    
    .westcotts-service-list li:hover {
        transform: none;
    }
    
    .westcotts-area-box:hover {
        transform: none;
    }
}