/* MOTIBEE Page Specific Styles - Bee Theme */

:root {
    --honey-gold: #FFB700;
    --honey-amber: #FFA000;
    --honey-dark: #E68900;
    --bee-brown: #6B4423;
    --bee-yellow: #FFD700;
    --hive-pattern: #FFF5E6;
}

.motibee-page {
    position: relative;
    overflow-x: hidden;
}

/* Animated Bee Background */
.bee-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.flying-bee {
    position: absolute;
    font-size: 30px;
    opacity: 0.1;
    animation: bee-fly 20s infinite linear;
}

.bee-1 {
    top: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.bee-2 {
    top: 30%;
    animation-duration: 30s;
    animation-delay: 5s;
}

.bee-3 {
    top: 50%;
    animation-duration: 22s;
    animation-delay: 10s;
}

.bee-4 {
    top: 70%;
    animation-duration: 28s;
    animation-delay: 15s;
}

.bee-5 {
    top: 90%;
    animation-duration: 26s;
    animation-delay: 20s;
}

@keyframes bee-fly {
    0% {
        transform: translateX(-100px) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(25vw) translateY(-30px) rotate(10deg);
    }
    50% {
        transform: translateX(50vw) translateY(30px) rotate(-10deg);
    }
    75% {
        transform: translateX(75vw) translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateX(110vw) translateY(0) rotate(0deg);
    }
}

/* MOTIBEE Hero Section */
.motibee-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--honey-amber) 100%);
    position: relative;
    overflow: hidden;
}

.honeycomb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(30deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px),
        repeating-linear-gradient(-30deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
    animation: honeycomb-shift 30s linear infinite;
}

@keyframes honeycomb-shift {
    from { transform: translateX(0); }
    to { transform: translateX(70px); }
}

.motibee-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bee-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bee-icon {
    font-size: 80px;
    animation: buzz 2s ease-in-out infinite;
}

@keyframes buzz {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-5px) rotate(-5deg); }
    75% { transform: translateX(5px) rotate(5deg); }
}

.bee-logo h1 {
    font-size: 4rem;
    color: white;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.honey-text {
    background: linear-gradient(135deg, var(--bee-brown), var(--bee-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Bee-themed Buttons */
.btn-honey {
    background: linear-gradient(135deg, var(--bee-brown), var(--bee-yellow));
    color: white;
    padding: 16px 40px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
}

.btn-honey:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 183, 0, 0.5);
}

.btn-outline-honey {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 38px;
}

.btn-outline-honey:hover {
    background: white;
    color: var(--honey-gold);
}

.btn-honey-large {
    background: linear-gradient(135deg, var(--bee-brown), var(--bee-yellow));
    color: white;
    padding: 20px 50px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
}

.btn-outline-honey-large {
    background: white;
    color: var(--honey-gold);
    border: 3px solid var(--honey-gold);
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Problem & Solution Section */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F0, #FFEDD0);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.problem-card, .solution-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card {
    border-top: 5px solid #FF6B6B;
}

.solution-card {
    border-top: 5px solid var(--honey-gold);
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 183, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header .icon {
    font-size: 40px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.problem-card ul, .solution-card ul {
    list-style: none;
    margin-top: 20px;
}

.problem-card li, .solution-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.problem-card li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #FF6B6B;
    font-weight: bold;
}

.solution-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--honey-gold);
    font-weight: bold;
}

/* Features Section with Hexagons */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-hexagon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon {
    width: 250px;
    height: 250px;
    position: relative;
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hexagon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(255, 183, 0, 0.3);
}

.hexagon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    color: white;
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.hexagon-content h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: white;
}

.hexagon-content p {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F0, white);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 60px auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(255, 183, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.step-content h3 {
    color: var(--bee-brown);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

.process-connector {
    flex: 0 0 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--honey-gold), var(--honey-amber));
    position: relative;
    margin: 0 -25px;
}

.process-connector::after {
    content: "→";
    position: absolute;
    right: -10px;
    top: -12px;
    color: var(--honey-gold);
    font-size: 24px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
}

.benefits-section .section-header h2 {
    color: white;
}

.benefits-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--bee-brown);
    margin-bottom: 15px;
}

/* Testimonial */
.testimonial-section {
    margin-top: 60px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    display: block;
    color: var(--bee-brown);
    font-size: 1.125rem;
}

.testimonial-author span {
    color: var(--text-light);
}

/* CTA Section */
.cta-section-bee {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F0, white);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    color: var(--bee-brown);
}

.cta-feature span {
    color: var(--honey-gold);
    font-weight: bold;
    font-size: 1.25rem;
}

.cta-note {
    margin-top: 30px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bee-logo {
        flex-direction: column;
    }

    .bee-logo h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hexagon {
        width: 200px;
        height: 200px;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-connector {
        width: 3px;
        height: 50px;
        margin: -25px 0;
    }

    .process-connector::after {
        content: "↓";
        right: -12px;
        top: auto;
        bottom: -10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}
