/* ===================================
   SEASONAL THEME CSS
   Colors: Spring Green, Summer Yellow, Fall Red/Orange, Winter Blue
   =================================== */

:root {
    /* Seasonal Colors from Logo - RED CENTERED */
    --fall-red: #FF6B6B;           /* PRIMARY/CENTRAL COLOR */
    --fall-orange: #FF8C42;        /* SECONDARY */
    --spring-green: #6BCB77;       /* ACCENT */
    --spring-light: #9AE5A3;
    --summer-yellow: #FFD93D;      /* ACCENT */
    --summer-light: #FFE76F;
    --winter-blue: #4D96FF;        /* ACCENT */
    --winter-light: #6DB1FF;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   SEASONAL BACKGROUND ELEMENTS
   =================================== */

.seasonal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.season-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Spring Flowers */
.season-element.spring.flower {
    animation: float-gentle 8s infinite;
}

.flower-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.flower-2 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
}

.flower-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Summer Sun */
.season-element.summer.sun {
    animation: pulse-glow 4s infinite;
}

.sun-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.sun-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 1s;
}

/* Fall Leaves */
.season-element.fall.leaf {
    animation: fall-down 10s infinite;
}

.leaf-1 {
    top: -10%;
    left: 20%;
    animation-delay: 0s;
}

.leaf-2 {
    top: -10%;
    right: 30%;
    animation-delay: 3s;
}

.leaf-3 {
    top: -10%;
    left: 60%;
    animation-delay: 6s;
}

.leaf-4 {
    top: -10%;
    right: 10%;
    animation-delay: 9s;
}

/* Winter Snow */
.season-element.winter.snow {
    animation: snow-fall 12s infinite;
}

.snow-1 {
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.snow-2 {
    top: -10%;
    right: 40%;
    animation-delay: 4s;
}

.snow-3 {
    top: -10%;
    left: 70%;
    animation-delay: 8s;
}

/* Animations */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes fall-down {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes snow-fall {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    100% {
        transform: translateY(120vh) translateX(100px);
        opacity: 0;
    }
}

/* ===================================
   HEADER
   =================================== */

.main-header {
    background: linear-gradient(135deg, var(--fall-red) 0%, var(--fall-orange) 35%, var(--summer-yellow) 60%, var(--winter-blue) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nav-menu a:hover {
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-seasonal {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 140, 66, 0.1) 50%, rgba(255, 217, 61, 0.08) 100%);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.seasonal-word {
    display: inline-block;
    animation: word-pulse 3s ease-in-out infinite;
}

.spring-color {
    color: var(--spring-green);
}

.summer-color {
    color: var(--summer-yellow);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.fall-color {
    color: var(--fall-red);
}

.winter-color {
    color: var(--winter-blue);
}

@keyframes word-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    color: var(--fall-red);
    font-size: 1.2rem;
}

.trust-badge span {
    font-weight: 600;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fall-red), var(--fall-orange));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-gray);
    border: 2px solid var(--fall-red);
}

.btn-secondary:hover {
    background: var(--fall-red);
    color: var(--white);
}

.hero-seasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.season-badge {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.season-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.season-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.season-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.spring-badge {
    border-top: 5px solid var(--spring-green);
}

.spring-badge .season-name {
    color: var(--spring-green);
}

.summer-badge {
    border-top: 5px solid var(--summer-yellow);
}

.summer-badge .season-name {
    color: #d4a600;
}

.fall-badge {
    border-top: 5px solid var(--fall-red);
}

.fall-badge .season-name {
    color: var(--fall-red);
}

.winter-badge {
    border-top: 5px solid var(--winter-blue);
}

.winter-badge .season-name {
    color: var(--winter-blue);
}

/* ===================================
   SECTIONS
   =================================== */

.services-section,
.about-section,
.why-section,
.contact-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--fall-red), var(--fall-orange), var(--summer-yellow), var(--winter-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.season-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.season-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.spring-dot {
    background: var(--spring-green);
}

.summer-dot {
    background: var(--summer-yellow);
}

.winter-dot {
    background: var(--winter-blue);
}

.season-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

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

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.service-features i {
    color: var(--fall-red);
}

/* Seasonal Service Cards */
.spring-card {
    border-top: 6px solid var(--spring-green);
}

.spring-card .service-icon {
    filter: drop-shadow(0 4px 8px rgba(107, 203, 119, 0.3));
}

.summer-card {
    border-top: 6px solid var(--summer-yellow);
}

.summer-card .service-icon {
    filter: drop-shadow(0 4px 8px rgba(255, 217, 61, 0.3));
}

.fall-card {
    border-top: 6px solid var(--fall-orange);
}

.fall-card .service-icon {
    filter: drop-shadow(0 4px 8px rgba(255, 140, 66, 0.3));
}

.winter-card {
    border-top: 6px solid var(--winter-blue);
}

.winter-card .service-icon {
    filter: drop-shadow(0 4px 8px rgba(77, 150, 255, 0.3));
}

/* Year-Round Card */
.year-round-card {
    border-top: 6px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--fall-red), var(--fall-orange), var(--summer-yellow), var(--winter-blue)) border-box;
    border: 6px solid transparent;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.year-round-banner {
    background: linear-gradient(135deg, var(--fall-red), var(--fall-orange), var(--summer-yellow), var(--winter-blue));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

/* Coming Soon Card */
.coming-soon-card {
    border-top: 6px solid var(--gray);
    opacity: 0.7;
}

.coming-soon-card .service-icon {
    filter: grayscale(50%);
}

.coming-soon-banner {
    background: var(--gray);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.coming-soon-card .service-features i {
    color: var(--gray);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.image-frame {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, var(--fall-red), var(--fall-orange), var(--summer-yellow), var(--winter-blue));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    display: block;
}

.about-content .section-title {
    text-align: left;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--fall-red);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border-top: 5px solid;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.spring-border {
    border-top-color: var(--spring-green);
}

.summer-border {
    border-top-color: var(--summer-yellow);
}

.fall-border {
    border-top-color: var(--fall-orange);
}

.winter-border {
    border-top-color: var(--winter-blue);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--fall-red);
    margin-top: 5px;
}

.contact-method strong {
    display: block;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-method a {
    color: var(--winter-blue);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method span {
    color: var(--gray);
}

.business-hours {
    background: var(--off-white);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--fall-red);
}

.business-hours h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.business-hours p {
    color: var(--gray);
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 140, 66, 0.05));
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fall-red);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-family: 'Quicksand', sans-serif;
}

/* ===================================
   FOOTER
   =================================== */

.main-footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    color: var(--white);
    padding: 50px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--fall-red);
}

.footer-contact p {
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--fall-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, var(--fall-red), var(--fall-orange), var(--summer-yellow), var(--winter-blue));
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-seasons {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .season-element {
        font-size: 1.5rem;
    }
}