/* Energy Only Homepage Styles */

.energy-only-homepage {
    background: #0a0a0a;
    color: #f8f8f8;
    min-height: 100vh;
}

/* Energy Hero Section */
.energy-hero {
    background: #000000;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.energy-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Desktop Layout - Side by Side */
@media (min-width: 1024px) {
    .energy-hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
        text-align: left;
    }
    
    .hero-content {
        flex: 1;
        max-width: 600px;
    }
    
    .hero-product-image {
        flex: 1;
        max-width: 500px;
        margin-bottom: 0;
    }
    
    .hero-tagline {
        margin: 0 auto;
    }
}

.hero-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.energy-bottle-top {
    width: 200px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(255, 204, 0, 0.3));
    transition: transform 0.3s ease;
}

/* Desktop Product Image */
@media (min-width: 1024px) {
    .energy-bottle-top {
        width: 300px;
    }
}

.energy-bottle-top:hover {
    transform: scale(1.05);
}

.hero-content {
    flex: 1;
    text-align: center;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Desktop Typography */
@media (min-width: 1024px) {
    .main-title {
        font-size: 5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
        margin-bottom: 3rem;
        max-width: none;
    }
}

.brand-name {
    color: #f8f8f8;
    display: block;
}

.energy-highlight {
    color: #FFCC00;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    animation: energyGlow 2s ease-in-out infinite alternate;
}

@keyframes energyGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 204, 0, 0.8), 0 0 40px rgba(255, 204, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #cccccc;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 2rem;
}

.buy-now-button {
    background: #FFCC00;
    color: #000;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.buy-now-button:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.4);
}

.hero-button {
    font-size: 1.3rem;
    padding: 1.8rem 3.5rem;
}

.safety-link-container {
    margin-top: 1rem;
}

.safety-info-link {
    color: #FFCC00;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.safety-info-link:hover {
    text-decoration: underline;
    color: #fff;
}

.hero-image {
    display: none; /* Hide the original side image */
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.energy-bottle {
    position: relative;
    z-index: 2;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}



/* Sublingual Section */
.energy-only-homepage .sublingual-section {
    background: #000000;
    color: #f8f8f8;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

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

.energy-only-homepage .sublingual-item {
    text-align: center;
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #444;
}

.sublingual-item:hover {
    transform: translateY(-5px);
}

.sublingual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sublingual-item h3 {
    color: #FFCC00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.energy-only-homepage .sublingual-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.energy-only-homepage .section-title {
    color: #f8f8f8;
}

.energy-only-homepage .sublingual-section .section-title,
.energy-only-homepage .ingredients .section-title,
.energy-only-homepage .faq-section .section-title {
    color: #f8f8f8;
}

/* Product Overview */
.product-overview {
    background: #000000;
    color: #f8f8f8;
    padding: 4rem 0;
    border-top: 1px solid #333;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #f8f8f8;
}

/* Founder Video Section */
.founder-video {
    background: #000000;
    color: #f8f8f8;
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.video-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.video-button {
    background: #FFCC00;
    border: none;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    display: inline-block;
}

.video-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.video-button-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* How to Use */
.energy-only-homepage .how-to-use {
    background: #000000;
    color: #f8f8f8;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.how-to-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.energy-only-homepage .how-to-list li {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    color: #f8f8f8;
}

.how-to-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFCC00;
}

/* Buy Now Sections */
.buy-now-section {
    background: #000000;
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid #333;
}

.main-cta {
    font-size: 1.4rem;
    padding: 2rem 4rem;
}

/* Ingredients Section */
.energy-only-homepage .ingredients {
    background: #000000;
    color: #f8f8f8;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.energy-only-homepage .ingredient-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #FFCC00;
    transition: transform 0.3s ease;
    border: 1px solid #444;
}

.ingredient-item:hover {
    transform: translateY(-3px);
}

.ingredient-item h3 {
    color: #FFCC00;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.energy-only-homepage .ingredient-item p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

/* Science Callout */
.energy-only-homepage .science-callout {
    background: #000000;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.energy-only-homepage .science-callout-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #FFCC00;
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.energy-only-homepage .science-callout h2 {
    color: #f8f8f8;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.energy-only-homepage .science-callout p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.energy-only-homepage .science-link-button {
    background: #FFCC00;
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.energy-only-homepage .science-link-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: #000000;
    color: #f8f8f8;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #FFCC00;
    transition: transform 0.3s ease;
    border: 1px solid #444;
}

.testimonial-item:hover {
    transform: translateY(-3px);
}

.testimonial-text {
    color: #f8f8f8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #FFCC00;
    font-weight: 600;
}

/* FAQ Section */
.energy-only-homepage .faq-section {
    background: #000000;
    color: #f8f8f8;
    padding: 5rem 0;
    border-top: 1px solid #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.energy-only-homepage .faq-item {
    margin-bottom: 1.5rem;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
}

.faq-question {
    background: #FFCC00;
    padding: 1.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e6b800;
}

.faq-question h3 {
    color: #333;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.energy-only-homepage .faq-answer {
    padding: 1.8rem;
    background: #1a1a1a;
}

.energy-only-homepage .faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: #000000;
    text-align: center;
    padding: 6rem 0;
    border-top: 1px solid #333;
}

.cta-title {
    font-size: 3rem;
    color: #f8f8f8;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.final-button {
    font-size: 1.4rem;
    padding: 2rem 4rem;
    margin-bottom: 2rem;
}

.guarantee {
    margin-top: 1.5rem;
}

.guarantee p {
    color: #FFCC00;
    font-style: italic;
    font-size: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close-modal:hover {
    color: #fff;
}

/* Safety Modal Styles */
.safety-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.energy-only-homepage .safety-modal-content {
    background: #1a1a1a;
    color: #f8f8f8;
    border: 2px solid #FFCC00;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.safety-modal-content {
    background: #f8f8f8;
    color: #333;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.safety-close {
    color: #FFCC00;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.safety-close:hover,
.safety-close:focus {
    color: #fff;
    text-decoration: none;
}

.energy-only-homepage .safety-modal h2 {
    color: #FFCC00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.safety-modal h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.safety-title {
    color: #FFCC00;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.energy-only-homepage .safety-warning {
    background: #333;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #FFCC00;
}

.safety-warning {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #FFCC00;
}

.safety-main-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.energy-only-homepage .safety-usage {
    font-size: 1rem;
    color: #FFCC00;
    margin-bottom: 1rem;
}

.safety-usage {
    font-size: 1rem;
    color: #856404;
    margin-bottom: 1rem;
}

.safety-bold {
    font-weight: bold;
    color: #721c24;
}

.energy-only-homepage .safety-restrictions h3 {
    color: #FFCC00;
    margin-bottom: 1rem;
}

.safety-restrictions h3 {
    color: #FFCC00;
    margin-bottom: 1rem;
}

.safety-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.energy-only-homepage .safety-ingredients {
    background: #444;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.energy-only-homepage .safety-ingredients p {
    color: #f8f8f8;
}

.safety-ingredients {
    background: #e2e3e5;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.safety-disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .energy-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-product-image {
        margin-bottom: 0.5rem;
    }
    
    .energy-bottle-top {
        width: 150px; /* Smaller on mobile */
        max-width: 100%;
    }
    
    .energy-hero {
        padding: 4rem 0 2rem; /* Less top padding on mobile */
    }
    
    .hero-product-image {
        margin-top: -2rem; /* Move image higher on mobile */
        margin-bottom: 1rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .buy-now-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .energy-bottle {
        max-width: 200px;
    }
    
    .sublingual-grid,
    .ingredients-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .science-callout-content {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
}