/* ============================================
   WESTCOTTS DECORATING - HOMEPAGE STYLES
   Colours: #4d5153 (dark), #ecebe9 (light), #af8c59 (accent)
   Font: Faustina (serif)
   Mobile: All text minimum 1rem, center-aligned
   ============================================ */

/* ============================================
   HOME HERO SECTION
   ============================================ */
.westcotts-home-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #ecebe9;
    position: relative;
}

.westcotts-home-hero-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.westcotts-home-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.westcotts-home-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Hero Trust Badges */
.westcotts-home-hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.westcotts-home-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.westcotts-home-hero-trust-item i {
    color: #af8c59;
    font-size: 1.125rem;
}

/* Hero CTA */
.westcotts-home-hero-btn {
    background-color: #af8c59;
    color: #ecebe9;
    text-decoration: none;
    font-family: 'Faustina', serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(175, 140, 89, 0.35);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Hero Phone Link (visible on mobile) */
.westcotts-home-hero-phone {
    display: none;
    margin-top: 24px;
}

.westcotts-home-hero-phone a {
    color: #ecebe9;
    text-decoration: none;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.westcotts-home-hero-phone a:hover {
    opacity: 1;
}

.westcotts-home-hero-phone i {
    color: #af8c59;
}

/* ============================================
   HERO RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .westcotts-home-hero {
        padding: 80px 0;
    }
    
    .westcotts-home-hero h1 {
        font-size: 2.5rem;
    }
    
    .westcotts-home-hero p {
        font-size: 1.125rem;
    }
    
    .westcotts-home-hero-trust {
        gap: 24px;
    }
}

/* ============================================
   HERO RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .westcotts-home-hero {
        padding: 70px 0;
        background-attachment: scroll;
    }
    
    .westcotts-home-hero-content {
        padding: 0 20px;
    }
    
    .westcotts-home-hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .westcotts-home-hero p {
        font-size: 1.0625rem;
        margin-bottom: 24px;
    }
    
    .westcotts-home-hero-trust {
        gap: 16px 24px;
        margin-bottom: 28px;
    }
    
    .westcotts-home-hero-trust-item {
        font-size: 1rem;
    }
    
    .westcotts-home-hero-btn {
        padding: 14px 32px;
        font-size: 1.0625rem;
    }
    
    /* Show phone on mobile */
    .westcotts-home-hero-phone {
        display: block;
    }
}

/* ============================================
   HERO RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .westcotts-home-hero {
        padding: 60px 0;
    }
    
    .westcotts-home-hero-content {
        padding: 0 16px;
    }
    
    .westcotts-home-hero h1 {
        font-size: 1.75rem;
    }
    
    .westcotts-home-hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .westcotts-home-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .westcotts-home-hero-trust-item {
        font-size: 1rem;
        justify-content: center;
    }
    
    .westcotts-home-hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .westcotts-home-hero-phone {
        margin-top: 20px;
    }
    
    .westcotts-home-hero-phone a {
        font-size: 1rem;
        justify-content: center;
    }
}

/* ============================================
   HOME CONTENT SECTIONS (About & Services)
   ============================================ */
.westcotts-home-about,
.westcotts-home-services {
    padding: 80px 0;
}

.westcotts-home-about {
    background-color: #ecebe9;
}

.westcotts-home-services {
    background-color: #fff;
}

.westcotts-home-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse layout for Services section */
.westcotts-home-services .westcotts-home-section-content {
    direction: rtl;
}

.westcotts-home-services .westcotts-home-section-content > * {
    direction: ltr;
}

/* Text Content */
.westcotts-home-text-content {
    max-width: 520px;
}

.westcotts-home-section-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #4d5153;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

/* Feature List */
.westcotts-home-feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.westcotts-home-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #4d5153;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(77, 81, 83, 0.1);
}

.westcotts-home-feature-list li:last-child {
    border-bottom: none;
}

.westcotts-home-feature-list i {
    color: #af8c59;
    font-size: 1.125rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Section Button */
.westcotts-home-section-btn {
    background-color: #af8c59;
    color: #ecebe9;
    text-decoration: none;
    font-family: 'Faustina', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(175, 140, 89, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.westcotts-home-section-btn:hover {
    background-color: #c4a470;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 140, 89, 0.35);
}

/* Image Content */
.westcotts-home-image-content {
    position: relative;
}

.westcotts-home-image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ============================================
   CONTENT SECTIONS RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .westcotts-home-about,
    .westcotts-home-services {
        padding: 70px 0;
    }
    
    .westcotts-home-section-content {
        gap: 40px;
    }
    
    .westcotts-home-section-content h2 {
        font-size: 2rem;
    }
    
    .westcotts-home-section-content p {
        font-size: 1rem;
    }
}

/* ============================================
   CONTENT SECTIONS RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .westcotts-home-about,
    .westcotts-home-services {
        padding: 60px 0;
    }
    
    .westcotts-home-section-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    /* Reset direction on mobile */
    .westcotts-home-services .westcotts-home-section-content {
        direction: ltr;
    }
    
    /* Text first, image second on mobile */
    .westcotts-home-text-content {
        max-width: 100%;
        order: 1;
    }
    
    .westcotts-home-image-content {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .westcotts-home-section-content h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .westcotts-home-section-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    /* Feature list: centered block, left-aligned text for readability */
    .westcotts-home-feature-list {
        text-align: left;
        max-width: 360px;
        margin: 0 auto 28px;
    }
    
    .westcotts-home-feature-list li {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    .westcotts-home-section-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ============================================
   CONTENT SECTIONS RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .westcotts-home-about,
    .westcotts-home-services {
        padding: 50px 0;
    }
    
    .westcotts-home-section-content {
        gap: 28px;
        padding: 0 16px;
    }
    
    .westcotts-home-section-content h2 {
        font-size: 1.5rem;
    }
    
    .westcotts-home-feature-list {
        max-width: 100%;
    }
    
    .westcotts-home-image-content {
        max-width: 100%;
    }
    
    .westcotts-home-section-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ============================================
   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: 80px 0;
    text-align: center;
    color: #ecebe9;
}

.westcotts-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.westcotts-cta h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.westcotts-cta p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0.95;
}

.westcotts-cta-btn {
    background-color: #af8c59;
    color: #ecebe9;
    text-decoration: none;
    font-family: 'Faustina', serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(175, 140, 89, 0.35);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* ============================================
   CTA RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .westcotts-cta {
        padding: 70px 0;
    }
    
    .westcotts-cta h2 {
        font-size: 2rem;
    }
    
    .westcotts-cta p {
        font-size: 1.0625rem;
    }
}

/* ============================================
   CTA RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .westcotts-cta {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .westcotts-cta-content {
        padding: 0 20px;
    }
    
    .westcotts-cta h2 {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }
    
    .westcotts-cta p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .westcotts-cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* ============================================
   CTA RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .westcotts-cta {
        padding: 50px 0;
    }
    
    .westcotts-cta-content {
        padding: 0 16px;
    }
    
    .westcotts-cta h2 {
        font-size: 1.5rem;
    }
    
    .westcotts-cta p {
        font-size: 1rem;
    }
    
    .westcotts-cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .westcotts-home-hero,
    .westcotts-cta {
        background-attachment: scroll;
    }
    
    .westcotts-home-hero-btn:hover,
    .westcotts-home-section-btn:hover,
    .westcotts-cta-btn:hover {
        transform: none;
    }
}
