/* Reset & Base Styles */
:root {
    --primary-color: #0056b3;
    --accent-color: #d32f2f;
    --text-color: #111111;
    --bg-color: #EBF5FF;
    /* Updated to requested color */
    --light-gray: #EBF5FF;
    /* Unified */
    --font-family: 'Inter', sans-serif;
    --container-padding: 15px;
    /* Reduced padding */
    --max-width: 480px;
}

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

body {
    font-family: var(--font-family);
    background-color: #EBF5FF;
    /* Updated background color */
    color: var(--text-color);
    line-height: 1.3;
    /* Tighter line height */
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: #EBF5FF;
    /* Unified background */
    /* height: 100vh; Force single screen height - REMOVED for extended content */
    /* overflow: hidden; Disable scrolling - REMOVED for extended content */
    padding: var(--container-padding);
    padding-bottom: 40px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed from space-between to allow natural flow */
    /* Distribute space evenly */
}

/* Header */
/* Header */
.header {
    text-align: center;
    padding-bottom: 5px;
    /* Minimal padding */
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    /* Reduced margin */
}

.logo-image {
    max-width: 100px;
    /* Much smaller logo */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 5px;
    /* Reduced margin */
}

.headline {
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 4px;
    /* Reduced to almost touching subheadline */
    text-transform: uppercase;
    color: #000;
}

.subheadline {
    font-size: 0.7rem;
    /* Significantly reduced to fit single line */
    color: #444;
    font-weight: 600;
    /* Increased weight for readability at small size */
    margin-bottom: 15px;
    padding: 0 2px;
    /* Minimal padding to maximize width */
    white-space: nowrap;
    /* Force single line */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Fallback just in case */
}

.hero-image-container {
    margin: 0 -15px;
    margin-bottom: 10px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 50vh;
    /* Maximized image height */
    object-fit: contain;
    /* Keep aspect ratio */
    display: block;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    margin-bottom: 20px;
    padding: 0 10px;
}

.benefit-list {
    list-style-type: disc;
    padding-left: 20px;
}

.benefit-list li::marker {
    color: #888;
    /* Gray bullets */
}

.benefit-item {
    margin-bottom: 8px;
    /* Tighter spacing */
    font-size: 0.9rem;
    /* Smaller text */
    font-weight: 500;
    color: #333;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

/* CTA Section - Floating/Sticky at bottom */
/* CTA Section - Static in flow */
.cta-section {
    text-align: center;
    margin-bottom: 10px;
    z-index: 10;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: #25D366;
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    /* Less rounded, more button-like */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    /* Added pulse animation */
}

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

.cta-subtext {
    margin-top: 6px;
    font-size: 0.75rem;
    color: #666;
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.7rem;
    color: #bbb;
    padding: 15px;
    background-color: var(--bg-color);
}

/* Reviews Carousel */
.reviews-section {
    margin-bottom: 20px;
    padding: 0;
    /* Full bleed, no padding */
    width: 100%;
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: transparent;
    /* Remove card bg to allow full bleed look if needed, or keep white */
    /* overflow: visible;  Let sides be seen - actually handled by container width 100% and absolute placement */
}

.review-slide {
    position: absolute;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%) translateX(0);
    /* Default transform for hidden/reset */
    width: 85%;
    /* Main slide width */
    height: 100%;
    /* Full height */
    object-fit: cover;
    /* Fill the image fully */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    /* No white bars */
    transition: all 0.5s ease-in-out;
    opacity: 0.4;
    left: 100%;
    z-index: 1;
}

/* Active Slide - Centered */
.review-slide.active {
    left: 7.5%;
    /* (100% - 85%) / 2 */
    opacity: 1;
    z-index: 10;
    transform: translateY(-50%) scale(1);
}

/* Next Slide - Peeking Right - FLUSH */
.review-slide.next {
    left: 92.5%;
    /* 7.5% + 85% = 92.5%. Touching active. */
    opacity: 0.4;
    z-index: 5;
    transform: translateY(-50%) scale(0.95);
}

/* Prev Slide - Peeking Left - FLUSH */
.review-slide.prev {
    left: -77.5%;
    /* 7.5% - 85% = -77.5%. Touching active. */
    opacity: 0.4;
    z-index: 5;
    transform: translateY(-50%) scale(0.95);
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.final-cta-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.final-cta-button {
    background-color: #25D366;
    /* WhatsApp Green */
    font-size: 1.2rem;
    /* Slightly larger */
    padding: 16px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}