:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-cyan: #00d2ff;
    --accent-hover: #00a5c8;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9ff;
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 70px;
    /* Space for mobile bottom bar */
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-cyan);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4);
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-giant {
    font-size: 1.5rem;
    padding: 20px 50px;
    width: 100%;
    max-width: 400px;
}

/* Header */
.header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-color {
    color: #ffbd59;
    /* Yellow accent */
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-header {
    background: white;
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 10px 25px;
    box-shadow: none;
}

.btn-header:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu-content a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    padding-bottom: 80px;
    z-index: 2;
    position: relative;
    text-align: center;
    /* Center text */
}

.hero-content {
    width: 100%;
    max-width: 900px;
    /* Allow more width for title */
    margin-bottom: 40px;
    /* Space between text and video */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    /* Center badges */
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.price-card-hero {
    background: white;
    color: var(--text-dark);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    display: inline-block;
    max-width: 450px;
}

.price-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.new-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.btn-hero {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.microcopy {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    /* Limit video width */
    display: flex;
    justify-content: center;
    position: relative;
    height: auto;
}

.hero-img-main {
    max-width: 100%;
    /* Removed negative margin */
    border-radius: 40px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.2);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cloud-divider-bottom {
    position: absolute;
    bottom: -1px;
    /* seamless */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.cloud-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/* 3 Cards Feature */
.features-3-cards {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 2;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.bg-yellow {
    background: #ffbd59;
}

.bg-blue {
    background: #59afff;
}

.bg-red {
    background: #ff5959;
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Categories */
.categories-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
}

.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #eee;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-icon-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin-bottom: 15px;
}

.bg-pink {
    background: #ff7eb3;
}

.bg-orange {
    background: #ff9966;
}

.bg-purple {
    background: #9b59b6;
}

.bg-green {
    background: #2ecc71;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* What you get (Redesign) */
.what-you-get {
    padding: 60px 0;
    background: #fcfcfc;
}

.mega-offer-card {
    background: white;
    border: 3px solid #2ecc71;
    /* Green border */
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Visual Side (Left) */
.offer-visual {
    flex: 1;
    position: relative;
    background: #eef2f5;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logic for the background grid of images */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.visual-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* CSS 3D Box */
.product-box-container {
    perspective: 1000px;
    z-index: 10;
    transform: scale(0.9);
}

.css-product-box {
    width: 200px;
    height: 280px;
    background: white;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(5deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s;
}

.css-product-box:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.box-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    /* Main Spine Image or Text */
}

.box-side {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 100%;
    background: #34495e;
    /* Dark spine */
    transform-origin: right;
    transform: rotateY(-90deg);
    border-left: 1px solid #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.box-side span {
    color: white;
    transform: rotate(-90deg);
    font-weight: bold;
    font-family: var(--font-heading);
    white-space: nowrap;
    letter-spacing: 2px;
}

/* Box Front Design */
.box-title {
    font-family: var(--font-heading);
    color: #2c3e50;
    font-size: 3rem;
    line-height: 0.9;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.box-subtitle {
    background: #2c3e50;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 5px;
}

.box-decoration {
    /* Simulating cover art presence */
    margin-top: 20px;
    width: 80%;
    height: 80px;
    background-image: url('assets/cat_cartoons.png');
    /* Fallback image */
    background-size: cover;
    border-radius: 10px;
    opacity: 0.8;
}

/* Content Side (Right) */
.offer-details {
    flex: 1.2;
    padding: 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #000;
    margin-bottom: 5px;
    line-height: 1;
}

.offer-subheading {
    color: #000;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.new-benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.new-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.3;
}

.new-benefits-list i {
    color: #2ecc71;
    /* Green Check */
    font-size: 1.3rem;
    margin-top: 2px;
}

.new-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 20px;
}

.old-price-red {
    font-size: 1.5rem;
    color: #c0392b;
    text-decoration: line-through;
    font-weight: 700;
}

.price-btn-green {
    background: #2ecc71;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transition: transform 0.2s;
}

.price-btn-green:hover {
    transform: scale(1.05);
    background: #27ae60;
}

/* Responsive Redesign */
@media (max-width: 900px) {
    .mega-offer-card {
        flex-direction: column;
        max-width: 500px;
    }

    .offer-visual {
        min-height: 300px;
    }

    .css-product-box {
        transform: scale(0.8) rotateY(-20deg);
    }

    .offer-details {
        padding: 30px 20px;
        text-align: center;
    }

    .new-benefits-list li {
        text-align: left;
    }

    .new-price-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* How it Works */
.how-it-works {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0 0 100px;
    position: relative;
}

.how-it-works .section-title {
    color: white;
    margin-top: 50px;
}

.cloud-divider-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 300px;
}

.step-number {
    background: white;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    border-bottom: 5px solid var(--accent-cyan);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    text-align: right;
}

/* Offer */
.offer-section {
    padding: 80px 0;
    background: white;
}

.offer-card-large {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.4);
}

.ribbon {
    position: absolute;
    top: 40px;
    right: -40px;
    background: #ff5959;
    color: white;
    padding: 10px 50px;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.price-display {
    margin: 30px 0;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.amount {
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.offer-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.offer-benefits li {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.offer-footer {
    margin-top: 20px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 210, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f9f9ff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding-top: 100px;
    position: relative;
    padding-bottom: 100px;
}

.cloud-divider-footer {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.cloud-divider-footer svg path {
    fill: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: white;
}

.payment-icons {
    font-size: 2rem;
    display: flex;
    gap: 15px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 50px;
    padding-top: 20px;
    color: #777;
    margin-bottom: 50px;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-info .small {
    font-size: 0.8rem;
    color: #666;
}

.price-info .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-compact {
    padding: 10px 30px;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive */
@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .nav-menu,
    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        text-align: center;
        padding-top: 40px;
    }

    .hero-container {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .hero-image {
        margin-top: 40px;
        order: -1;
        margin-bottom: 30px;
    }

    .hero-img-main {
        max-width: 100%;
        margin-right: 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flex-container {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .faq-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .offer-card-large {
        padding: 30px;
    }

    .amount {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    body {
        padding-bottom: 80px;
    }

    .benefits-list li {
        font-size: 1rem;
    }
}

/* VSL Section */
.vsl-section {
    padding: 80px 0;
    background: #eef2f5;
    /* Soft sky-like background (very light gray/blue) */
    position: relative;
    z-index: 2;
}

.cloud-frame-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.cloud-video-frame {
    background: #ffffff;
    padding: 20px;
    border-radius: 50px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 15px rgba(255, 255, 255, 0.5);
    /* Outer glow/ring for cloud effect */
    max-width: 900px;
    width: 100%;
    position: relative;
}

/* Creating the "fluffy" cloud look using pseudo-elements is tricky to make responsive 
   without breaking the video aspect ratio. 
   Instead, we rely on the soft, rounded, thick white border style.
*/

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .cloud-video-frame {
        padding: 10px;
        border-radius: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .cloud-frame-container {
        padding: 10px;
        margin-top: 20px;
    }

    .vsl-section {
        padding: 50px 0;
    }
}

/* Interactive Background */
#interactive-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    /* Let clicks pass through */
}

.bg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 120%;
    /* Slight overflow to vary positions */
    margin-left: -10%;
    transform: rotate(-5deg);
    /* Dynamic angle */
    opacity: 0.15;
    /* Subtle by default */
}

.bg-item {
    padding: 2.5%;
    transition: all 0.5s ease;
    cursor: default;
    pointer-events: auto;
    /* Catch hovers */
}

.bg-item:hover {
    transform: scale(1.1);
    z-index: 10;
}

.bg-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) opacity(0.5);
    /* Start B&W and faded */
    transition: all 0.5s ease;
    display: block;
}

/* Hover Effect (Desktop) */
.bg-item:hover img {
    filter: grayscale(0%) opacity(1);
    /* Full color and visible */
}

/* Active State (Mobile Scroll) */
.bg-item.active img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .bg-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-left: 0;
        transform: none;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Adjust for mobile to avoid overlap with bottom bar */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Guarantee Section Refined */
.guarantee-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
}

.guarantee-badge-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    min-width: 280px;
}

.guarantee-number {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: #333;
    font-family: var(--font-heading);
    margin-bottom: -10px;
}

.guarantee-text-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.guarantee-text-badge span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
}

.guarantee-text-badge .strong {
    font-size: 2rem;
    color: #000;
    font-weight: 900;
}

.stars-guarantee {
    display: flex;
    gap: 5px;
}

.stars-guarantee i {
    font-size: 1.4rem;
    color: #ffc107;
    /* Bright Yellow Stars */
}

/* Guarantee Content */
.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-green-guarantee {
    display: inline-block;
    background: #00d1ff;
    /* Match the vibrant cyan from reference */
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-green-guarantee:hover {
    background: #00b8e6;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 209, 255, 0.4);
}

@media (max-width: 900px) {
    .guarantee-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .guarantee-badge-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .guarantee-title {
        font-size: 1.8rem;
    }
}