/* ==========================================================================
   E-poe Tegemine One-Pager Styles
   Color palette inspired by seo-agentuur.ee
   ========================================================================== */

/* CSS Variables */
:root {
    --ep-primary: #619F95;
    --ep-primary-dark: #4a8079;
    --ep-primary-light: rgba(97, 159, 149, 0.15);
    --ep-accent: #FE6042;
    --ep-dark: #181a31;
    --ep-dark-card: #1e2039;
    --ep-text: #3b3d42;
    --ep-text-light: #898a98;
    --ep-white: #ffffff;
    --ep-light-bg: #f8fafa;
    --ep-border: rgba(97, 159, 149, 0.2);
    --ep-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ep-container: 1200px;
    --ep-radius: 12px;
    --ep-radius-sm: 8px;
    --ep-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
}

/* Global font override - force DM Sans everywhere */
.page-template-page-epood,
.page-template-page-epood *,
.page-template-page-epood h1,
.page-template-page-epood h2,
.page-template-page-epood h3,
.page-template-page-epood h4,
.page-template-page-epood h5,
.page-template-page-epood h6,
.page-template-page-epood p,
.page-template-page-epood a,
.page-template-page-epood li,
.page-template-page-epood span,
.page-template-page-epood div {
    font-family: "DM Sans", sans-serif !important;
}


/* Reset & Base for One-Pager */
.epood-onepager,
.epood-onepager * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.epood-onepager {
    font-family: var(--ep-font);
    color: var(--ep-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--ep-white);
}

/* Hide Kava theme header/footer */
.epood-onepager .site-header,
.epood-onepager .site-footer,
.epood-onepager #masthead,
.epood-onepager #colophon,
.epood-onepager .kava-header,
.epood-onepager .kava-footer {
    display: none !important;
}

/* Container */
.epood-container {
    max-width: var(--ep-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.epood-nav {
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(24, 26, 49, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(97, 159, 149, 0.1);
    transition: var(--ep-transition);
    padding: 0;
}

.epood-nav.scrolled {
    background: rgba(24, 26, 49, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.epood-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.epood-nav__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.epood-nav__logo-seo {
    color: var(--ep-primary);
    font-weight: 800;
}

.epood-nav__logo-text {
    color: var(--ep-white);
    font-weight: 300;
    letter-spacing: 2px;
}

.epood-nav__links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.epood-nav__links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--ep-radius-sm);
    transition: var(--ep-transition);
}

.epood-nav__links a:hover {
    color: var(--ep-white);
    background: rgba(97, 159, 149, 0.15);
}

.epood-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.epood-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ep-white);
    transition: var(--ep-transition);
    border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.epood-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--ep-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--ep-transition);
    border: 2px solid transparent;
    line-height: 1.5;
}

.epood-btn--primary {
    background: var(--ep-primary);
    color: var(--ep-white);
    border-color: var(--ep-primary);
}

.epood-btn--primary:hover {
    background: var(--ep-primary-dark);
    border-color: var(--ep-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 159, 149, 0.35);
}

.epood-btn--outline {
    background: transparent;
    color: var(--ep-white);
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 50px;
    font-family: "DM Sans", sans-serif;
    padding: 14px 32px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.epood-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--ep-white);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.epood-btn--nav {
    background: var(--ep-primary);
    color: var(--ep-white) !important;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: var(--ep-radius-sm);
}

.epood-btn--nav:hover {
    background: var(--ep-primary-dark) !important;
    transform: translateY(-1px);
}

.epood-btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.epood-section-label {
    color: var(--ep-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.epood-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ep-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.epood-section-desc {
    font-size: 1.1rem;
    color: var(--ep-text-light);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.epood-hero {
    background: linear-gradient(135deg, var(--ep-dark) 0%, #1a2a3a 50%, #1a3530 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.epood-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(97, 159, 149, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.epood-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 96, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.epood-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.epood-hero__label {
    color: var(--ep-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.epood-hero__title {
    font-family: "DM Sans", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--ep-white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: center;
}

.epood-highlight {
    color: var(--ep-primary);
    position: relative;
}

.epood-hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 580px;
}

.epood-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.epood-hero__actions .epood-btn--outline {
    color: var(--ep-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.epood-hero__actions .epood-btn--outline:hover {
    background: var(--ep-white);
    color: var(--ep-dark);
    border-color: var(--ep-white);
}

.epood-hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.epood-hero__stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ep-primary);
    margin-bottom: 4px;
}

.epood-hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.epood-services {
    padding: 100px 0;
    background: var(--ep-white);
}

.epood-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.epood-service-card {
    background: var(--ep-light-bg);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    padding: 36px;
    transition: var(--ep-transition);
}

.epood-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(97, 159, 149, 0.12);
    border-color: var(--ep-primary);
}

.epood-service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--ep-primary-light);
    border-radius: var(--ep-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
    margin-bottom: 20px;
}

.epood-service-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ep-dark);
    margin-bottom: 12px;
}

.epood-service-card__desc {
    color: var(--ep-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.epood-service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epood-service-card__list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--ep-text);
}

.epood-service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--ep-primary);
    border-radius: 50%;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.epood-why {
    padding: 100px 0;
    background: var(--ep-dark);
}

.epood-why .epood-section-title {
    color: var(--ep-white);
}

.epood-why .epood-section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.epood-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.epood-why__item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--ep-radius);
    padding: 32px;
    transition: var(--ep-transition);
}

.epood-why__item:hover {
    background: rgba(97, 159, 149, 0.08);
    border-color: rgba(97, 159, 149, 0.25);
    transform: translateY(-2px);
}

.epood-why__icon {
    width: 56px;
    height: 56px;
    background: var(--ep-primary-light);
    border-radius: var(--ep-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
    margin-bottom: 20px;
}

.epood-why__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ep-white);
    margin-bottom: 10px;
}

.epood-why__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.epood-process {
    padding: 100px 0;
    background: var(--ep-white);
}

.epood-process__timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.epood-process__timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--ep-border);
}

.epood-process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.epood-process__number {
    width: 64px;
    height: 64px;
    background: var(--ep-primary);
    color: var(--ep-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
}

.epood-process__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ep-dark);
    margin-bottom: 10px;
}

.epood-process__desc {
    font-size: 0.85rem;
    color: var(--ep-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   RESULTS / CASE STUDIES
   ========================================================================== */
.epood-results {
    padding: 100px 0;
    background: var(--ep-light-bg);
}

.epood-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.epood-results__card {
    background: var(--ep-white);
    border: 2px dashed var(--ep-border);
    border-radius: var(--ep-radius);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.epood-results__placeholder {
    text-align: center;
    color: var(--ep-text-light);
    padding: 40px;
}

.epood-results__placeholder svg {
    opacity: 0.3;
    margin-bottom: 16px;
}

.epood-results__placeholder p {
    font-size: 0.9rem;
    font-style: italic;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.epood-faq {
    padding: 100px 0;
    background: var(--ep-white);
}

.epood-faq .epood-section-title {
    text-align: center;
}

.epood-faq .epood-section-label {
    text-align: center;
}

.epood-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.epood-faq__item {
    border-bottom: 1px solid var(--ep-border);
}

.epood-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--ep-font);
    text-align: left;
}

.epood-faq__question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ep-dark);
    flex: 1;
    padding-right: 16px;
}

.epood-faq__question svg {
    color: var(--ep-primary);
    transition: var(--ep-transition);
    flex-shrink: 0;
}

.epood-faq__question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.epood-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.epood-faq__answer.open {
    max-height: 500px;
}

.epood-faq__answer p {
    padding-bottom: 24px;
    color: var(--ep-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.epood-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ep-primary) 0%, var(--ep-primary-dark) 100%);
    text-align: center;
}

.epood-cta__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ep-white);
    margin-bottom: 16px;
}

.epood-cta__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.epood-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.epood-cta__actions .epood-btn--primary {
    background: var(--ep-white);
    color: var(--ep-primary);
    border-color: var(--ep-white);
}

.epood-cta__actions .epood-btn--primary:hover {
    background: var(--ep-dark);
    color: var(--ep-white);
    border-color: var(--ep-dark);
}

.epood-cta__actions .epood-btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--ep-white);
}

.epood-cta__actions .epood-btn--outline:hover {
    background: var(--ep-white);
    color: var(--ep-primary);
    border-color: var(--ep-white);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.epood-contact {
    padding: 100px 0;
    background: var(--ep-dark);
}

.epood-contact .epood-section-title {
    color: var(--ep-white);
}

.epood-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.epood-contact__desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.epood-contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.epood-contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.epood-contact__detail svg {
    color: var(--ep-primary);
    flex-shrink: 0;
}

.epood-contact__detail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--ep-transition);
}

.epood-contact__detail a:hover {
    color: var(--ep-primary);
}

/* CF7 Form Styling */
.epood-contact__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.epood-contact__form label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.epood-contact__form .wpcf7-form-control-wrap {
    display: block;
}

.epood-contact__form input[type="text"],
.epood-contact__form input[type="email"],
.epood-contact__form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--ep-radius-sm);
    color: var(--ep-white);
    font-family: var(--ep-font);
    font-size: 0.95rem;
    transition: var(--ep-transition);
    outline: none;
}

.epood-contact__form input[type="text"]:focus,
.epood-contact__form input[type="email"]:focus,
.epood-contact__form textarea:focus {
    border-color: var(--ep-primary);
    background: rgba(97, 159, 149, 0.06);
    box-shadow: 0 0 0 3px rgba(97, 159, 149, 0.15);
}

.epood-contact__form input::placeholder,
.epood-contact__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.epood-contact__form textarea {
    min-height: 140px;
    resize: vertical;
}

.epood-contact__form input[type="submit"] {
    background: var(--ep-primary);
    color: var(--ep-white);
    border: 2px solid var(--ep-primary);
    padding: 14px 36px;
    border-radius: var(--ep-radius-sm);
    font-family: var(--ep-font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ep-transition);
    width: auto;
    align-self: flex-start;
}

.epood-contact__form input[type="submit"]:hover {
    background: var(--ep-primary-dark);
    border-color: var(--ep-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 159, 149, 0.35);
}

.epood-contact__form .wpcf7-response-output {
    color: var(--ep-primary);
    border-color: var(--ep-primary) !important;
    border-radius: var(--ep-radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
}

.epood-contact__form .wpcf7-not-valid-tip {
    color: var(--ep-accent);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.epood-footer {
    padding: 32px 0;
    background: #111122;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.epood-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.epood-footer__copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .epood-process__timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .epood-process__timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .epood-nav {
        padding-top: 8px;
    }

    .epood-nav__toggle {
        display: flex;
    }

    .epood-nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(24, 26, 49, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateY(-120%);
        transition: var(--ep-transition);
        border-bottom: 1px solid rgba(97, 159, 149, 0.15);
    }

    .epood-nav__links.active {
        transform: translateY(0);
    }

    .epood-nav__links a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .epood-nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .epood-nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .epood-nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .epood-hero {
        padding: 120px 0 70px;
    }

    .epood-hero__title {
        font-size: 2rem;
    }

    .epood-hero__desc {
        font-size: 1rem;
    }

    .epood-hero__stats {
        flex-direction: column;
        gap: 24px;
    }

    .epood-hero__actions {
        flex-direction: column;
    }

    .epood-hero__actions .epood-btn {
        text-align: center;
    }

    /* Section titles */
    .epood-section-title {
        font-size: 1.8rem;
    }

    /* Services */
    .epood-services__grid {
        grid-template-columns: 1fr;
    }

    /* Why Us */
    .epood-why__grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .epood-process__timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .epood-process__step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .epood-process__number {
        margin: 0;
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }

    /* Results */
    .epood-results__grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .epood-contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* CTA */
    .epood-cta__title {
        font-size: 1.6rem;
    }

    .epood-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .epood-footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .epood-hero__title {
        font-size: 1.7rem;
    }

    .epood-service-card {
        padding: 24px;
    }

    .epood-container {
        padding: 0 16px;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.epood-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.epood-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Schema/SEO hidden data */
.epood-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ==========================================================================
   WOW Effects - Animations & Visual Enhancements
   ========================================================================== */

/* --- Keyframes --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, -80px) scale(0.95); }
    75% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Hero entrance animations --- */
.epood-hero__label {
    animation: fadeInDown 0.8s ease-out both;
    animation-delay: 0.2s;
}

.epood-hero__title {
    animation: fadeInUp 1s ease-out both;
    animation-delay: 0.4s;
}

.epood-hero__desc {
    animation: fadeInUp 1s ease-out both;
    animation-delay: 0.7s;
}

.epood-hero__actions {
    animation: fadeInUp 1s ease-out both;
    animation-delay: 1s;
}

.epood-hero__stats {
    animation: fadeInUp 1s ease-out both;
    animation-delay: 1.3s;
}

/* --- Floating orbs in hero --- */
.epood-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.epood-hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #619F95 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatOrb 15s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.epood-hero__orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #FE6042 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: floatOrb 20s ease-in-out infinite reverse, pulse 5s ease-in-out infinite 1s;
    opacity: 0.15;
}

.epood-hero__orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #4a8079 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: floatOrb 18s ease-in-out infinite 3s, pulse 6s ease-in-out infinite 2s;
    opacity: 0.2;
}

/* --- Scroll reveal base --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.55s; }

/* --- Enhanced card hover effects --- */
.epood-service-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}

.epood-service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(97, 159, 149, 0.1) !important;
}

.epood-reason-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.epood-reason-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(97, 159, 149, 0.08) !important;
    border-color: rgba(97, 159, 149, 0.4) !important;
}

/* --- Enhanced button effects --- */
.epood-btn--accent {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.epood-btn--accent:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 35px rgba(254, 96, 66, 0.35) !important;
}

.epood-btn--accent::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.epood-btn--accent:hover::after {
    transform: translateX(100%);
}

.epood-btn--outline {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease !important;
}

.epood-btn--outline:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(97, 159, 149, 0.2) !important;
}

/* --- Animated title highlight --- */
.epood-hero__title .highlight {
    background: linear-gradient(90deg, #619F95, #4ecdc4, #619F95);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* --- Section heading underline animation --- */
.epood-section__title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #619F95, #FE6042);
    margin: 16px auto 0;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.epood-section__title.revealed::after {
    width: 80px;
}

/* --- Glowing accent on CTA section --- */
.epood-cta {
    position: relative;
    overflow: hidden;
}

.epood-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(97, 159, 149, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* --- Process step number glow --- */
.epood-process-card__number {
    transition: transform 0.3s ease, text-shadow 0.3s ease !important;
}

.epood-process-card:hover .epood-process-card__number {
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(97, 159, 149, 0.5);
}

/* --- Pricing card hover --- */
.epood-pricing-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(97, 159, 149, 0.1) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}

/* --- FAQ item smooth animation --- */
.epood-faq__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.epood-faq__item:hover {
    transform: none;
    box-shadow: none;
}

/* --- Stat number counter style --- */
.epood-hero__stat-num {
    display: inline-block;
    transition: transform 0.3s ease;
}

.epood-hero__stat:hover .epood-hero__stat-num {
    transform: scale(1.15);
}


/* === VISUAL ENHANCEMENT: Bolder Colors & Gradients === */
.epood-onepager {
  --ep-primary: #3AAFA3;
  --ep-primary-dark: #2E8F85;
  --ep-primary-light: rgba(58, 175, 163, 0.15);
  --ep-primary-glow: rgba(58, 175, 163, 0.25);
  --ep-border: rgba(58, 175, 163, 0.25);
}

.epood-hero {
  background: linear-gradient(135deg, #0f1128 0%, #162033 30%, #1a3530 60%, #14302a 100%) !important;
}
.epood-hero__orb--1 { background: radial-gradient(circle, rgba(58, 175, 163, 0.18) 0%, transparent 70%) !important; }
.epood-hero__orb--2 { background: radial-gradient(circle, rgba(254, 96, 66, 0.12) 0%, transparent 70%) !important; }
.epood-hero__orb--3 { background: radial-gradient(circle, rgba(78, 205, 196, 0.14) 0%, transparent 70%) !important; }

.epood-hero__stat-num {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epood-highlight {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4, #3AAFA3) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: shimmerText 4s ease-in-out infinite !important;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* === WAVE DIVIDERS BETWEEN SECTIONS === */
.epood-services { position: relative; }
.epood-services::before {
  content: ""; position: absolute; top: -60px; left: 0;
  width: 100%; height: 60px; background: var(--ep-white, #fff);
  clip-path: ellipse(55% 100% at 50% 100%); z-index: 3;
}

.epood-why { position: relative; }
.epood-why::before {
  content: ""; position: absolute; top: -50px; left: 0;
  width: 100%; height: 50px; z-index: 2;
  background: var(--ep-dark, #181a31);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.epood-results { position: relative; }
.epood-results::before {
  content: ""; position: absolute; top: -50px; left: 0;
  width: 100%; height: 50px; background: var(--ep-white, #fff);
  clip-path: ellipse(55% 100% at 50% 100%); z-index: 2;
}

.epood-pricing-section { position: relative; }
.epood-pricing-section::before {
  content: ""; position: absolute; top: -50px; left: 0;
  width: 100%; height: 50px; background: #1e2039;
  clip-path: ellipse(55% 100% at 50% 100%); z-index: 2;
}

.epood-cta { position: relative; }
.epood-cta::before {
  content: ""; position: absolute; top: -50px; left: 0;
  width: 100%; height: 50px;
  background: linear-gradient(135deg, #2E8F85, #3AAFA3);
  clip-path: ellipse(55% 100% at 50% 100%); z-index: 2;
}

.epood-contact { position: relative; }
.epood-contact::before {
  content: ""; position: absolute; top: -50px; left: 0;
  width: 100%; height: 50px;
  background: linear-gradient(170deg, #0f1128 0%, #162033 50%, #1a3530 100%);
  clip-path: ellipse(55% 100% at 50% 100%); z-index: 2;
}

@media (max-width: 768px) {
  .epood-services::before, .epood-why::before, .epood-results::before,
  .epood-pricing-section::before, .epood-cta::before, .epood-contact::before {
    height: 30px; top: -30px;
  }
}

/* === ENHANCED CARDS & SECTIONS === */
.epood-service-card {
  border: 1px solid transparent !important;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, rgba(58,175,163,0.3), rgba(78,205,196,0.1), rgba(254,96,66,0.15)) border-box !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.epood-service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(58,175,163,0.12), 0 8px 16px rgba(0,0,0,0.06) !important;
}
.epood-service-card__icon {
  background: linear-gradient(135deg, rgba(58,175,163,0.12), rgba(78,205,196,0.08)) !important;
  border-radius: 16px !important;
}

.epood-why {
  background: linear-gradient(170deg, #14162e 0%, #1a2a3a 50%, #1a3530 100%) !important;
}
.epood-reason-card {
  border-left: 3px solid var(--ep-primary) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.epood-reason-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(58,175,163,0.15) !important;
}

.epood-results__card {
  border: 1px solid transparent !important;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, rgba(58,175,163,0.25), rgba(78,205,196,0.08), rgba(254,96,66,0.12)) border-box !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.epood-results__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(58,175,163,0.1), 0 4px 12px rgba(0,0,0,0.05);
}

.epood-pricing-section {
  background: linear-gradient(170deg, #14162e 0%, #1a2235 50%, #192e2a 100%) !important;
}
.epood-pricing-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.epood-pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(58,175,163,0.2), 0 8px 20px rgba(0,0,0,0.15) !important;
}

.epood-cta {
  background: linear-gradient(135deg, #2E8F85 0%, #3AAFA3 40%, #4ECDC4 100%) !important;
}

.epood-contact {
  background: linear-gradient(170deg, #0f1128 0%, #162033 50%, #1a3530 100%) !important;
}

/* === BUTTONS, FAQ, FOOTER & ACCENTS === */
.epood-btn--primary, .epood-btn--accent {
  background: linear-gradient(135deg, #FE6042, #ff7a5c) !important;
  box-shadow: 0 4px 15px rgba(254,96,66,0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.epood-btn--primary:hover, .epood-btn--accent:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(254,96,66,0.45) !important;
}
.epood-btn--nav {
  background: linear-gradient(135deg, #FE6042, #ff7a5c) !important;
  box-shadow: 0 3px 12px rgba(254,96,66,0.3) !important;
}
.epood-btn--outline {
  border-color: rgba(58,175,163,0.5) !important;
}
.epood-btn--outline:hover {
  background: rgba(58,175,163,0.15) !important;
  border-color: rgba(58,175,163,0.8) !important;
  box-shadow: 0 0 20px rgba(58,175,163,0.2) !important;
}

.epood-faq__item {
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}
.epood-faq__item:hover {
  border-left-color: var(--ep-primary);
  background: rgba(58,175,163,0.03);
}

.epood-section-label {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}

.epood-section-title::after {
  content: ""; display: block; width: 60px; height: 3px;
  background: linear-gradient(90deg, #3AAFA3, #4ECDC4);
  border-radius: 2px; margin-top: 16px;
}

.epood-footer { position: relative; }
.epood-footer::before {
  content: ""; position: absolute; top: 0; left: 10%; width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, #3AAFA3, #4ECDC4, #3AAFA3, transparent);
  border-radius: 1px;
}

.epood-contact .epood-btn {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4) !important;
  box-shadow: 0 4px 15px rgba(58,175,163,0.35) !important;
}
.epood-contact .epood-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(58,175,163,0.5) !important;
}

.epood-process__number {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4) !important;
  box-shadow: 0 4px 15px rgba(58,175,163,0.35) !important;
}


/* ==========================================
   PROCESS SECTION - FANCY EFFECTS v3.1
   ========================================== */

/* Pulsing glow ring around process numbers */
.epood-process__number::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #3AAFA3, #4ECDC4, #FE6042, #ff7a5c, #4ECDC4, #3AAFA3);
  z-index: -1;
  opacity: 0.6;
  animation: spinGlow 4s linear infinite;
}

@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Outer pulse ring */
.epood-process__number::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px solid rgba(58, 175, 163, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* Stagger the pulse for each step */
.epood-process__step:nth-child(1) .epood-process__number::after { animation-delay: 0s; }
.epood-process__step:nth-child(2) .epood-process__number::after { animation-delay: 0.6s; }
.epood-process__step:nth-child(3) .epood-process__number::after { animation-delay: 1.2s; }
.epood-process__step:nth-child(4) .epood-process__number::after { animation-delay: 1.8s; }
.epood-process__step:nth-child(5) .epood-process__number::after { animation-delay: 2.4s; }

/* Gradient animated connecting line */
.epood-process__timeline::before {
  background: linear-gradient(90deg, #3AAFA3, #4ECDC4, #FE6042, #4ECDC4, #3AAFA3) !important;
  background-size: 200% 100% !important;
  animation: flowLine 4s ease-in-out infinite !important;
  height: 3px !important;
  border-radius: 2px !important;
}

@keyframes flowLine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Step hover effects */
.epood-process__step {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  cursor: default;
}

.epood-process__step:hover {
  transform: translateY(-8px) !important;
}

.epood-process__step:hover .epood-process__number {
  transform: scale(1.15) !important;
  box-shadow: 0 0 30px rgba(58, 175, 163, 0.5), 0 0 60px rgba(58, 175, 163, 0.2) !important;
}

.epood-process__step:hover .epood-process__number::before {
  opacity: 1;
}

/* Number circle enhanced */
.epood-process__number {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease !important;
  z-index: 2 !important;
  overflow: visible !important;
}

/* Title gradient on hover */
.epood-process__step:hover .epood-process__title {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epood-process__title {
  transition: all 0.3s ease !important;
}

/* Description fade-in enhancement */
.epood-process__desc {
  transition: color 0.3s ease !important;
}

.epood-process__step:hover .epood-process__desc {
  color: var(--ep-text, #3b3d42) !important;
}

/* Entrance animation */
.epood-process__step {
  animation: fadeSlideUp 0.6s ease-out both;
}

.epood-process__step:nth-child(1) { animation-delay: 0.1s; }
.epood-process__step:nth-child(2) { animation-delay: 0.2s; }
.epood-process__step:nth-child(3) { animation-delay: 0.3s; }
.epood-process__step:nth-child(4) { animation-delay: 0.4s; }
.epood-process__step:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glowing dots on the connecting line */
.epood-process__timeline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.8), transparent 70%);
  transform: translateY(-50%);
  animation: travelDot 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes travelDot {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Mobile: reduce effects */
@media (max-width: 768px) {
  .epood-process__number::before {
    top: -4px; left: -4px; right: -4px; bottom: -4px;
  }
  .epood-process__number::after {
    top: -8px; left: -8px; right: -8px; bottom: -8px;
  }
  .epood-process__step:hover {
    transform: translateY(-4px) !important;
  }
  .epood-process__timeline::after {
    display: none;
  }
}

/* ==========================================
   SERVICE CARDS - WOW EFFECTS v3.2
   ========================================== */

/* Card base enhancements */
.epood-service-card {
  position: relative !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  background-clip: padding-box !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* Shine sweep overlay */
.epood-service-card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(58,175,163,0.07), rgba(255,255,255,0.15), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.8s ease !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.epood-service-card:hover::after {
  left: 130% !important;
}

/* 3D lift + glow on hover */
.epood-service-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  border-color: rgba(58, 175, 163, 0.4) !important;
  box-shadow:
    0 25px 50px rgba(58, 175, 163, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(58, 175, 163, 0.1),
    inset 0 0 30px rgba(58, 175, 163, 0.03) !important;
}

/* Floating icon animation */
.epood-service-card__icon {
  position: relative !important;
  animation: iconFloat 4s ease-in-out infinite !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.epood-service-card:nth-child(1) .epood-service-card__icon { animation-delay: 0s !important; }
.epood-service-card:nth-child(2) .epood-service-card__icon { animation-delay: 0.5s !important; }
.epood-service-card:nth-child(3) .epood-service-card__icon { animation-delay: 1s !important; }
.epood-service-card:nth-child(4) .epood-service-card__icon { animation-delay: 1.5s !important; }

/* Icon glow on hover */
.epood-service-card:hover .epood-service-card__icon {
  background: linear-gradient(135deg, rgba(58,175,163,0.2), rgba(78,205,196,0.15)) !important;
  box-shadow: 0 0 25px rgba(58,175,163,0.35), 0 0 50px rgba(58,175,163,0.1) !important;
  transform: translateY(-6px) scale(1.12) !important;
  animation: none !important;
}

/* Title gradient on hover */
.epood-service-card__title {
  transition: all 0.3s ease !important;
}

.epood-service-card:hover .epood-service-card__title {
  background: linear-gradient(135deg, #2E8F85, #3AAFA3, #4ECDC4) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Card staggered entrance */
.epood-service-card {
  animation: cardEntrance 0.6s ease-out both !important;
}

.epood-service-card:nth-child(1) { animation-delay: 0.1s !important; }
.epood-service-card:nth-child(2) { animation-delay: 0.2s !important; }
.epood-service-card:nth-child(3) { animation-delay: 0.3s !important; }
.epood-service-card:nth-child(4) { animation-delay: 0.4s !important; }

@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile */
@media (max-width: 768px) {
  .epood-service-card:hover {
    transform: translateY(-5px) scale(1.01) !important;
  }
  .epood-service-card__icon {
    animation: none !important;
  }
}

/* ==========================================
   WHY SECTION CARDS - WOW EFFECTS v3.4
   ========================================== */

/* Card base - overflow hidden for shine sweep */
.epood-why__item {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(58, 175, 163, 0.15) !important;
  border-left: 3px solid rgba(58, 175, 163, 0.4) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* Shine sweep on hover */
.epood-why__item::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(58,175,163,0.05), rgba(255,255,255,0.08), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.8s ease !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.epood-why__item:hover::after {
  left: 130% !important;
}

/* Lift + glow on hover */
.epood-why__item:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-left-color: #3AAFA3 !important;
  border-color: rgba(58, 175, 163, 0.35) !important;
  border-left: 3px solid #3AAFA3 !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(58, 175, 163, 0.12),
    inset 0 0 30px rgba(58, 175, 163, 0.03) !important;
}

/* Floating icon */
.epood-why__icon {
  position: relative !important;
  animation: iconFloat 4s ease-in-out infinite !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.epood-why__item:nth-child(1) .epood-why__icon { animation-delay: 0s !important; }
.epood-why__item:nth-child(2) .epood-why__icon { animation-delay: 0.6s !important; }
.epood-why__item:nth-child(3) .epood-why__icon { animation-delay: 1.2s !important; }
.epood-why__item:nth-child(4) .epood-why__icon { animation-delay: 1.8s !important; }

/* Icon glow on hover */
.epood-why__item:hover .epood-why__icon {
  background: linear-gradient(135deg, rgba(58,175,163,0.25), rgba(78,205,196,0.15)) !important;
  box-shadow: 0 0 25px rgba(58,175,163,0.3), 0 0 50px rgba(58,175,163,0.1) !important;
  transform: translateY(-4px) scale(1.12) !important;
  animation: none !important;
}

/* Title gradient on hover */
.epood-why__title {
  transition: all 0.3s ease !important;
}

.epood-why__item:hover .epood-why__title {
  background: linear-gradient(135deg, #3AAFA3, #4ECDC4, #6ee0d8) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Staggered entrance */
.epood-why__item {
  animation: whyCardEntrance 0.6s ease-out both !important;
}

.epood-why__item:nth-child(1) { animation-delay: 0.1s !important; }
.epood-why__item:nth-child(2) { animation-delay: 0.2s !important; }
.epood-why__item:nth-child(3) { animation-delay: 0.3s !important; }
.epood-why__item:nth-child(4) { animation-delay: 0.4s !important; }

@keyframes whyCardEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile */
@media (max-width: 768px) {
  .epood-why__item:hover {
    transform: translateY(-5px) scale(1.01) !important;
  }
  .epood-why__icon {
    animation: none !important;
  }
}

/* ============================================
   PRICING SECTION - WOW EFFECTS (v3.5)
   ============================================ */

/* Fix title - remove italic, add gradient */
.epood-pricing__title {
  font-style: normal !important;
  background: linear-gradient(135deg, #2d3748, #3AAFA3, #4ECDC4) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 200% 100% !important;
  animation: titleShimmer 4s ease-in-out infinite !important;
}
@keyframes titleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Pricing cards - base setup */
.epood-pricing__card {
  position: relative !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* Shine sweep overlay */
.epood-pricing__card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(58,175,163,0.06), rgba(255,255,255,0.12), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.8s ease !important;
  z-index: 5 !important;
  pointer-events: none !important;
}
.epood-pricing__card:hover::after {
  left: 130% !important;
}

/* 3D lift + glow on hover */
.epood-pricing__card:hover {
  transform: translateY(-14px) scale(1.03) !important;
  border-color: rgba(58,175,163,0.35) !important;
  box-shadow: 0 30px 60px rgba(58,175,163,0.12), 0 15px 25px rgba(0,0,0,0.06), 0 0 0 1px rgba(58,175,163,0.08), inset 0 0 40px rgba(58,175,163,0.02) !important;
}

/* Card title gradient on hover */
.epood-pricing__card:hover .epood-pricing__card-title {
  background: linear-gradient(135deg, #2E8F85, #3AAFA3, #4ECDC4) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.epood-pricing__card-title {
  transition: all 0.4s ease !important;
}





/* Price pulse animation on hover */
.epood-pricing__new {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), text-shadow 0.4s ease !important;
}
.epood-pricing__card:hover .epood-pricing__new {
  transform: scale(1.12) !important;
  text-shadow: 0 0 20px rgba(254,96,66,0.3) !important;
}

/* Old price strikethrough animation */
.epood-pricing__old {
  transition: opacity 0.3s ease !important;
}
.epood-pricing__card:hover .epood-pricing__old {
  opacity: 0.5 !important;
}

/* CTA button glow on card hover */
.epood-pricing__btn {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important;
}
.epood-pricing__card:hover .epood-pricing__btn {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(254,96,66,0.35), 0 0 40px rgba(254,96,66,0.15) !important;
}

/* Button pulse animation on hover */
.epood-pricing__btn:hover {
  animation: btnPulse 1.5s ease-in-out infinite !important;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(254,96,66,0.35); }
  50% { box-shadow: 0 8px 35px rgba(254,96,66,0.5), 0 0 50px rgba(254,96,66,0.2); }
}

/* Staggered card entrance */
.epood-pricing__card {
  animation: pricingCardEntrance 0.7s ease-out both !important;
}
.epood-pricing__card:nth-child(1) { animation-delay: 0.1s !important; }
.epood-pricing__card:nth-child(2) { animation-delay: 0.25s !important; }
.epood-pricing__card:nth-child(3) { animation-delay: 0.4s !important; }
@keyframes pricingCardEntrance {
  from { opacity: 0; transform: translateY(40px) scale(0.92) rotateX(5deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
}

/* Top accent bar on cards */
.epood-pricing__card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, #3AAFA3, #4ECDC4, #FE6042) !important;
  background-size: 200% 100% !important;
  animation: flowLine 4s ease-in-out infinite !important;
  z-index: 2 !important;
  border-radius: 8px 8px 0 0 !important;
}

/* Price wrap subtle background on hover */
.epood-pricing__price-wrap {
  transition: background 0.4s ease !important;
  border-radius: 8px !important;
}
.epood-pricing__card:hover .epood-pricing__price-wrap {
  background: rgba(58,175,163,0.03) !important;
}

/* Fix italic from <em> tag in pricing title */
.epood-pricing__title em {
  font-style: normal !important;
}


/* ============================================
   FAQ / KKK SECTION - WOW EFFECTS (v3.6)
   ============================================ */

/* Section title gradient */
.epood-faq .epood-section-title {
  background: linear-gradient(135deg, #2d3748, #3AAFA3, #4ECDC4) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 200% 100% !important;
  animation: titleShimmer 4s ease-in-out infinite !important;
}

/* FAQ items - base styling */
.epood-faq__item {
  position: relative !important;
  overflow: hidden !important;
  border-left: 3px solid transparent !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}

/* Left accent on hover */
.epood-faq__item:hover {
  border-left-color: #3AAFA3 !important;
  box-shadow: -4px 0 15px rgba(58,175,163,0.1), 0 4px 15px rgba(0,0,0,0.03) !important;
  transform: translateX(6px) !important;
}

/* Shine sweep on FAQ items */
.epood-faq__item::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(58,175,163,0.04), rgba(255,255,255,0.08), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.7s ease !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.epood-faq__item:hover::after {
  left: 130% !important;
}

/* Question text gradient on hover */
.epood-faq__question {
  position: relative !important;
  z-index: 1 !important;
  transition: color 0.3s ease !important;
}
.epood-faq__question span {
  transition: all 0.3s ease !important;
}
.epood-faq__item:hover .epood-faq__question span {
  background: linear-gradient(135deg, #2E8F85, #3AAFA3) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Chevron icon animation on hover */
.epood-faq__question svg {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease !important;
}
.epood-faq__item:hover .epood-faq__question svg {
  color: #3AAFA3 !important;
  stroke: #3AAFA3 !important;
  filter: drop-shadow(0 0 6px rgba(58,175,163,0.4)) !important;
}

/* Active/open item glow */
.epood-faq__item.active,
.epood-faq__item[open] {
  border-left-color: #4ECDC4 !important;
  background: linear-gradient(90deg, rgba(58,175,163,0.03), transparent) !important;
}

/* Answer text fade-in */
.epood-faq__answer {
  position: relative !important;
  z-index: 1 !important;
}

/* Staggered entrance animations */
.epood-faq__item {
  animation: faqEntrance 0.5s ease-out both !important;
}
.epood-faq__item:nth-child(1) { animation-delay: 0.05s !important; }
.epood-faq__item:nth-child(2) { animation-delay: 0.12s !important; }
.epood-faq__item:nth-child(3) { animation-delay: 0.19s !important; }
.epood-faq__item:nth-child(4) { animation-delay: 0.26s !important; }
.epood-faq__item:nth-child(5) { animation-delay: 0.33s !important; }
.epood-faq__item:nth-child(6) { animation-delay: 0.40s !important; }
@keyframes faqEntrance {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Bottom divider glow on hover */
.epood-faq__item::before {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0% !important;
  height: 1px !important;
  background: linear-gradient(90deg, #3AAFA3, #4ECDC4, transparent) !important;
  transition: width 0.5s ease !important;
  z-index: 1 !important;
}
.epood-faq__item:hover::before {
  width: 60% !important;
}


/* ============================================
   RESPONSIVE FIXES - PRICING & FAQ (v3.7)
   ============================================ */

/* Pricing grid - tablet */
@media (max-width: 1024px) {
  .epood-pricing__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
}

/* Pricing grid - mobile: stack to single column */
@media (max-width: 768px) {
  .epood-pricing__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    max-width: 450px !important;
    margin: 0 auto !important;
  }
  
  /* Reduce pricing card hover effects on mobile */
  .epood-pricing__card:hover {
    transform: translateY(-6px) scale(1.01) !important;
  }
  
  /* Reduce FAQ hover shift on mobile */
  .epood-faq__item:hover {
    transform: translateX(3px) !important;
  }
  
  /* Reduce pricing card entrance animation */
  .epood-pricing__card {
    animation-delay: 0s !important;
  }
  
  /* Reduce pricing title size on mobile */
  .epood-pricing__title {
    font-size: 2rem !important;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .epood-pricing__grid {
    max-width: 100% !important;
    padding: 0 8px !important;
  }
  
  .epood-pricing__card-title {
    font-size: 1.2rem !important;
  }
  
  .epood-pricing__new {
    font-size: 2rem !important;
  }
  
  /* Disable shine sweep on small screens (performance) */
  .epood-pricing__card::after,
  .epood-service-card::after,
  .epood-why__item::after,
  .epood-faq__item::after {
    display: none !important;
  }
  
  /* Reduce all hover lift effects on small mobile */
  .epood-service-card:hover,
  .epood-why__item:hover {
    transform: translateY(-4px) !important;
  }
  
  .epood-pricing__card:hover {
    transform: translateY(-4px) !important;
  }
  
  .epood-faq__item:hover {
    transform: translateX(2px) !important;
  }
}
