/* ========================================
   HOME HERO SECTION
========================================= */

.westcotts-home-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    color: #ecebe9;
    position: relative;
    overflow: hidden;
}

.westcotts-home-hero::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-home-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.westcotts-home-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.westcotts-home-hero p {
    font-size: 1.3rem;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.westcotts-home-hero-btn {
    background-color: #af8c59;
    color: #ecebe9;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 500;
    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;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

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

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

/* Hero Tablet Responsive */
@media (max-width: 1024px) {
    .westcotts-home-hero {
        padding: 100px 0;
    }
    
    .westcotts-home-hero h1 {
        font-size: 3rem;
    }
    
    .westcotts-home-hero p {
        font-size: 1.2rem;
        margin-bottom: 32px;
    }
    
    .westcotts-home-hero-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
    .westcotts-home-hero {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .westcotts-home-hero h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    
    .westcotts-home-hero p {
        font-size: 1.1rem;
        margin-bottom: 28px;
        padding: 0 20px;
    }
    
    .westcotts-home-hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Hero Small Mobile Responsive */
@media (max-width: 480px) {
    .westcotts-home-hero {
        padding: 60px 0;
    }
    
    .westcotts-home-hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .westcotts-home-hero p {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    
    .westcotts-home-hero-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ========================================
   HOME CONTENT SECTIONS
========================================= */

.westcotts-home-about {
    padding: 100px 0;
    background-color: #ecebe9;
}

.westcotts-home-services {
    padding: 100px 0;
    background-color: #ffffff;
}

.westcotts-home-section-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.westcotts-home-text-content {
    flex: 1;
    animation: slideInLeft 0.8s ease-out;
}

.westcotts-home-image-content {
    flex: 1;
    animation: slideInRight 0.8s ease-out;
}

.westcotts-home-image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.westcotts-home-image-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

.westcotts-home-section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #af8c59;
}

.westcotts-home-section-content p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    color: #4d5153;
    line-height: 1.7;
}

.westcotts-home-feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.westcotts-home-feature-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    padding: 8px 0;
    transition: transform 0.2s ease;
}

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

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

.westcotts-home-section-btn {
    background-color: #af8c59;
    color: #ecebe9;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 500;
    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;
    font-size: 1.1rem;
    margin-top: 24px;
}

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

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

/* Content Sections Tablet Responsive */
@media (max-width: 1024px) {
    .westcotts-home-about,
    .westcotts-home-services {
        padding: 80px 0;
    }
    
    .westcotts-home-section-content {
        gap: 60px;
    }
    
    .westcotts-home-section-content h2 {
        font-size: 2.4rem;
    }
    
    .westcotts-home-section-content p {
        font-size: 1.1rem;
    }
    
    .westcotts-home-feature-list li {
        font-size: 1rem;
    }
    
    .westcotts-home-section-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Content Sections Mobile Responsive */
@media (max-width: 768px) {
    .westcotts-home-about,
    .westcotts-home-services {
        padding: 80px 0;
    }
    
    .westcotts-home-section-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .westcotts-home-text-content,
    .westcotts-home-image-content {
        animation: fadeInUp 0.8s ease-out;
        width: 100%;
    }
    
    .westcotts-home-section-content h2 {
        font-size: 2.2rem;
        text-align: center;
        margin: 0 auto 32px auto;
    }
    
    .westcotts-home-section-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .westcotts-home-section-content p {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .westcotts-home-feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px auto;
    }
    
    .westcotts-home-feature-list li {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .westcotts-home-feature-list i {
        font-size: 1.2rem;
    }
    
    .westcotts-home-section-btn {
        padding: 16px 32px;
        font-size: 1rem;
        margin-top: 0;
    }
}

/* Content Sections Small Mobile Responsive */
@media (max-width: 480px) {
    .westcotts-home-about,
    .westcotts-home-services {
        padding: 60px 0;
    }
    
    .westcotts-home-section-content {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .westcotts-home-section-content h2 {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }
    
    .westcotts-home-section-content p {
        font-size: 1rem;
        margin-bottom: 36px;
    }
    
    .westcotts-home-feature-list {
        max-width: 100%;
        margin-bottom: 36px;
    }
    
    .westcotts-home-feature-list li {
        font-size: 0.9rem;
        margin-bottom: 18px;
        gap: 12px;
    }
    
    .westcotts-home-feature-list i {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .westcotts-home-section-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* ========================================
   GENERAL STYLES & ANIMATIONS
========================================= */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .westcotts-home-hero-content,
    .westcotts-home-section-content,
    .westcotts-home-text-content,
    .westcotts-home-image-content {
        animation: none;
    }
    
    .westcotts-home-hero {
        background-attachment: scroll;
    }
    
    .westcotts-home-feature-list li:hover {
        transform: none;
    }
    
    .westcotts-home-image-content img:hover {
        transform: none;
    }
}