@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Bee Palette */
    --primary: #F9C50F; /* Yellow */
    --primary-dark: #e0b10d;
    --secondary: #4A3B32; /* Brown */
    --secondary-light: #6b5649;
    --text: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --success: #22c55e;
    
    /* Spacing */
    --container-padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.highlight {
    color: var(--secondary);
    background-color: var(--primary);
    padding: 0 10px;
    border-radius: 8px;
    display: inline-block;
    transform: skew(-2deg);
}

.center {
    text-align: center;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--secondary);
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: var(--secondary-light);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 59, 50, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(74, 59, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 59, 50, 0);
    }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background-color: var(--primary);
    padding: 80px 0 150px; /* Extra padding for wave */
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    background-color: var(--white);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features span {
    background-color: rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.cta-container .small-text {
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 20px 20px 0 rgba(0,0,0,0.1);
    border: 5px solid var(--white);
}

.float-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.float-badge span {
    font-size: 2.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ============================================
   CONTENT SHOWCASE
============================================ */
.content-showcase {
    padding: 80px 0;
    background-color: var(--white);
}

.section-label {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform:translateY(-10px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    color: var(--secondary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* ============================================
   GALLERY PREVIEW
============================================ */
.gallery-preview {
    padding: 60px 0;
    background-color: #fff9e6; /* Very light yellow */
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 40px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.gallery-scroll img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    height: 400px;
    width: auto;
    transition: transform 0.3s ease;
}

.gallery-scroll img:hover {
    transform: scale(1.02);
}

/* ============================================
   BONUS SECTION
============================================ */
.bonus-section {
    padding: 100px 0;
    background-color: var(--secondary);
    color: var(--white);
}

.bonus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-tag {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}

.bonus-list {
    list-style: none;
    margin-top: 30px;
}

.bonus-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 15px;
}

.check {
    width: 25px;
    height: 25px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bonus-image img {
    border-radius: 20px;
    border: 5px solid rgba(255,255,255,0.1);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.stars {
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author span {
    font-weight: 700;
    color: var(--secondary);
}

/* ============================================
   OFFER SECTION
============================================ */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
}

.offer-header {
    background: var(--primary);
    padding: 30px;
    text-align: center;
    color: var(--secondary);
}

.offer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.offer-body {
    padding: 40px;
    text-align: center;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.new-price {
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 10px;
}

.new-price .currency {
    font-size: 2rem;
    vertical-align: top;
}

.new-price .amount {
    font-size: 5rem;
    line-height: 1;
}

.payment-info {
    color: var(--success);
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--success);
    color: var(--white);
    display: block;
    width: 100%;
    padding: 25px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.guarantee-badge img {
    width: 30px;
}

.secure-icons {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   FAQ
============================================ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
}

.faq-item h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ============================================
   FOOTER
============================================ */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-grid, .bonus-wrapper, .footer-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

    .float-badge {
        display: none;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}