/* pellets.css */

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navbar adjustment */
.navbar.has-bg {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.navbar.has-bg .nav-links a {
    color: var(--color-tech-dark);
}

/* Hero Section */
.pellets-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--color-tech-white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-bag {
    max-width: 80%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--color-tech-dark);
    margin-bottom: 0.5rem;
}

.section-heading p {
    font-size: 1.2rem;
    color: var(--color-text);
    opacity: 0.8;
}

.heading-underline {
    height: 4px;
    width: 60px;
    background: var(--color-golden-wheat);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.heading-underline.left {
    margin: 1rem 0 0;
}

/* Product Presentation V2 — Modern & Cheerful */
.product-presentation-v2 {
    padding: 100px 0;
    background: #0f1923;
    position: relative;
    overflow: hidden;
}

.features-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(76, 175, 80, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.features-heading {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.features-label {
    display: inline-block;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.features-heading h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.5;
}

.features-underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-golden-wheat), #e6b840);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fc-digest::before { background: linear-gradient(180deg, #43A047, #66BB6A); }
.fc-pure::before { background: linear-gradient(180deg, #00897B, #26A69A); }
.fc-nutrients::before { background: linear-gradient(180deg, #D4A843, #FFD54F); }
.fc-eco::before { background: linear-gradient(180deg, #2E7D32, #81C784); }
.fc-fresh::before { background: linear-gradient(180deg, #1976D2, #42A5F5); }

.feature-card-v2:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-v2:hover::before {
    opacity: 1;
}

.fc-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card-v2:hover .fc-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.fc-gradient-green {
    background: linear-gradient(135deg, #43A047, #66BB6A);
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.fc-gradient-teal {
    background: linear-gradient(135deg, #00897B, #26A69A);
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

.fc-gradient-gold {
    background: linear-gradient(135deg, #D4A843, #FFD54F);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.fc-gradient-emerald {
    background: linear-gradient(135deg, #2E7D32, #81C784);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.fc-gradient-blue {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.feature-card-v2 h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card-v2 p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.fc-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: auto;
}

.feature-card-v2:hover .fc-tag {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Last two cards — span to center */
.features-grid-v2 .feature-card-v2:nth-child(4) {
    grid-column: 1 / 2;
}
.features-grid-v2 .feature-card-v2:nth-child(5) {
    grid-column: 2 / 3;
}

@media (max-width: 992px) {
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid-v2 .feature-card-v2:nth-child(4),
    .features-grid-v2 .feature-card-v2:nth-child(5) {
        grid-column: auto;
    }
    .features-heading h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
    .product-presentation-v2 {
        padding: 60px 0;
    }
}

/* Highlight Section */
.highlight-section {
    padding: 100px 0;
    background: var(--color-tech-dark);
    color: var(--color-tech-white);
}

.highlight-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.highlight-image {
    flex: 1;
    max-width: 500px;
}

.highlight-image img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.highlight-text {
    flex: 1;
}

.highlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.mt-4 { margin-top: 2.5rem; }

.properties-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.properties-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.properties-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-golden-wheat);
    font-weight: bold;
    font-size: 1.2rem;
}

.properties-list li strong {
    color: var(--color-golden-wheat);
}

/* Consumer Club */
.consumer-club {
    padding: 100px 0;
}
.bg-light {
    background-color: #f9fafb;
}

.club-intro-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.club-intro-split.reverse-split {
    flex-direction: row-reverse;
}

.mt-spacer {
    margin-top: 6rem;
}

.club-points {
    flex: 1.2;
    display: grid;
    gap: 2rem;
}

.point-item h4 {
    font-size: 1.2rem;
    color: var(--color-leaf-green);
    margin-bottom: 0.5rem;
}

.point-item p {
    color: var(--color-text);
    line-height: 1.6;
}

.club-images {
    flex: 0.8;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.club-img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.club-img:hover {
    transform: scale(1.02);
}

/* CTA */
.join-club-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-leaf-green) 0%, #1e5c26 100%);
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-large {
    font-size: 1.3rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    background: var(--color-golden-wheat);
    color: var(--color-tech-dark);
}

.cta-large:hover {
    background: #e6b840;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-split,
    .highlight-split,
    .club-intro-split {
        flex-direction: column;
        text-align: center;
    }
    
    .club-intro-split.reverse-split {
        flex-direction: column;
    }

    .heading-underline.left {
        margin: 1rem auto;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .properties-list li {
        text-align: left;
    }
}
