/* =================================
   SEASONAL TREE CARE SECTION
================================= */
.seasonal-section{
    padding:80px 0;
}

/* GRID */
.season-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.season-card{
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-top: 4px solid var(--hover-color);
    transition: 0.3s ease;
}

/* HOVER */
.season-card:hover{
    transform: translateY(-6px);
    border-top: 4px solid var(--cta-color);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* TITLE */
.season-card h3{
    color: var(--header-bg);
    margin-bottom: 12px;
}

/* TEXT */
.season-card p{
    color: #000;
    line-height: 1.7;
}

/* =================================
   RESPONSIVE BREAKPOINTS
================================= */

/* Large Tablets (992px and below) */
@media (max-width: 992px){
    .seasonal-section{
        padding: 60px 0;
    }
    
    .season-grid{
        gap: 20px;
    }
    
    .season-card{
        padding: 25px;
        border-radius: 12px;
    }
    
    .season-card h3{
    }
    
    .season-card p{
        line-height: 1.6;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px){
    .seasonal-section{
        padding: 50px 0;
    }
    
    .season-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .season-card{
        padding: 22px 20px;
        border-radius: 12px;
    }
    
    .season-card h3{
        margin-bottom: 10px;
    }
    
    .season-card p{
        line-height: 1.6;
    }
    
    .season-card:hover{
        transform: translateY(-4px);
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px){
    .seasonal-section{
        padding: 40px 0;
    }
    
    .season-grid{
        gap: 15px;
    }
    
    .season-card{
        padding: 18px 15px;
        border-radius: 10px;
        border-top-width: 3px;
    }
    
    .season-card h3{
        margin-bottom: 8px;
    }
    
    .season-card p{
        line-height: 1.5;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px){
    .seasonal-section{
        padding: 35px 0;
    }
    
    .season-grid{
        gap: 14px;
    }
    
    .season-card{
        padding: 20px 22px;
        border-radius: 10px;
    }
    
    .season-card h3{
        margin-bottom: 8px;
    }
    
    .season-card p{
        line-height: 1.5;
    }
}

/* Very Small Mobile Devices (400px and below) */
@media (max-width: 400px){
    .seasonal-section{
        padding: 30px 0;
    }
    
    .season-grid{
        gap: 12px;
    }
    
    .season-card{
        padding: 20px 22px;
        border-radius: 8px;
        border-top-width: 3px;
    }
    
    .season-card h3{
        margin-bottom: 6px;
    }
    
    .season-card p{
        line-height: 1.5;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape){
    .seasonal-section{
        padding: 40px 0;
    }
    
    .season-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .season-card{
        padding: 15px;
    }
    
    .season-card h3{
    }
    
    .season-card p{
    }
}

/* Print Styles (Optional) */
@media print {
    .seasonal-section{
        padding: 20px 0;
    }
    
    .season-grid{
        display: block;
    }
    
    .season-card{
        box-shadow: none;
        border: 1px solid #ddd;
        border-top: 4px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 15px;
    }
    
    .season-card:hover{
        transform: none;
        box-shadow: none;
    }
    
    .season-card h3{
        color: #000;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.seasonal-section h2, .section-title h2 { font-size: 40px !important; }
.seasonal-section h3, .season-card h3, .section-title h3 { font-size: 22px !important; }
.seasonal-section p, .season-card p, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
.seasonal-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .seasonal-section h2, .section-title h2 { font-size: 35px !important; }
    .seasonal-section h3, .season-card h3, .section-title h3 { font-size: 22px !important; }
    .seasonal-section p, .season-card p, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
    .seasonal-section li { font-size: 18px !important; line-height: 1.6 !important; }
}