/* Base Setup */
:root {
    --primary-color: #e63946;
    /* Urgent Red/Pink */
    --secondary-color: #1d3557;
    /* Trustworthy Dark Blue */
    --accent-color: #2a9d8f;
    /* Health Green */
    --bg-light: #f1faee;
    --text-dark: #333;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    margin-bottom: 15px;
}

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

.container {
    width: 90%;
    max-width: 800px;
    /* Kept narrow for reading focus */
    margin: 0 auto;
    padding: 0 10px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #fff 0%, #f1faee 100%);
    padding: 40px 0;
    text-align: center;
}

.headline {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary-color);
    text-decoration: underline;
}

.subheadline {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-media img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 0 auto 20px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.benefit-item .icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: #cc0000;
    /* Strong Red */
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: transform 0.2s;
    width: 100%;
    max-width: 400px;
}

.cta-button:active {
    transform: scale(0.98);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(204, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }
}

.small-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: 50px 0;
    background-color: #fff;
}

.problem-section h3 {
    text-align: center;
    color: var(--secondary-color);
}

.pain-points {
    list-style: none;
    margin: 20px 0;
    background: #fff0f0;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.pain-points li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Solution Section */
.solution-section {
    padding: 50px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.solution-section h3 {
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 15px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}

.comparison-box {
    background: #fff;
    color: var(--text-dark);
    padding: 20px;
    border-radius: 12px;
    border: 3px solid var(--accent-color);
    margin-top: 30px;
}

.comparison-box ul {
    list-style: none;
    font-weight: 700;
    margin-top: 10px;
}

/* Proof Section */
.proof-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Offer Section */
.offer-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.offer-box {
    border: 2px dashed var(--primary-color);
    padding: 30px 20px;
    border-radius: 15px;
    background: #fffdfd;
    margin-bottom: 40px;
}

.urgent-banner {
    background: red;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 15px;
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.offer-box ul {
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.offer-box ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bonus {
    background: var(--accent-color);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-area {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 900;
}

.savings {
    background: #d4edda;
    color: #155724;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.guarantee-badge img {
    width: 80px;
}

/* Form */
.form-container {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--secondary-color);
}

.form-header {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    /* Large touch target */
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    background-color: #28a745;
    /* Success Green */
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.assurance {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}



.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Video Section */
.video-section {
    padding: 50px 0;
    background: #000;
    color: white;
    text-align: center;
}

.video-section h3 {
    color: white;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.form-helper {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-style: italic;
    line-height: 1.2;
}

/* WhatsApp Testimonials */
.whatsapp-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.whatsapp-card {
    background: #e5ddd5;
    /* WhatsApp BG Color */
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #d4d4d4;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.whatsapp-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-bubble {
    background-color: #dcf8c6;
    /* Green Bubble */
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    font-size: 0.95rem;
    color: #333;
    line-break: auto;
    text-align: left;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #dcf8c6;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    /* Below WhatsApp button */
    display: none;
    /* Hidden on Desktop */
}

.mobile-sticky-cta a {
    display: block;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        padding-bottom: 20px;
        /* Space for iPhone Home bar */
    }

    .whatsapp-float {
        bottom: 80px;
        /* Move WhatsApp up */
    }
}