/* Import Google Font (Roboto or similar) and Material/Font Awesome icons */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

/* Variables for color consistency */
:root {
    /* NEW COLORS */
    --accent-color: #00b4d8; /* Light blue modern */
    --bg-color: #0f0f1a;    /* Main background */
    --dark-bg: #0f0f1a;     /* Darker main background */
    --text-color: #ffffff;  /* Pure white text */
    --card-bg: rgba(26, 26, 46, 0.7);     /* Background of cards with transparency */
    --gradient: linear-gradient(90deg, #00b4d8 0%, #0077b6 100%);
    --section-bg: rgba(15, 15, 26, 0.9); /* Background color of sections with transparency */
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

.accent {
    color: var(--accent-color);
    font-weight: 700;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

section {
    padding: 80px 5%;
    text-align: center;
    animation: fadeIn 0.8s ease-out; /* Animation for sections */
    background-color: var(--section-bg);
    position: relative;
    z-index: 1;
}

/* Gradient effect between sections */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00b4d8, #a18cd1);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
    z-index: 2;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 300;
}

/* ---------------- TOP BAR ---------------- */

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info i {
    margin-right: 5px;
    font-size: 1rem;
    vertical-align: middle;
}

.current-date {
    font-weight: 500;
}

/* ---------------- HEADER & NAVIGATION ---------------- */

.header {
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo img { /* Style for the logo image (ipitiv.online) */
    height: 40px; 
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    font-size: 1rem;
    padding: 5px 0;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}


/* ---------------- BOUTONS CTA ---------------- */

.action-group {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 10px; 
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px 0; 
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
    text-align: center; 
    flex-grow: 1; 
    min-width: 150px; 
}

.cta-button.primary {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(0, 180, 216, 0.1);
    transform: translateY(-3px);
}


/* ---------------- HERO ---------------- */

.hero {
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; 
}

/* Pseudo-element for a dark gradient on the background image */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative; 
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--text-color);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------------- FONCTIONNALITÉS ---------------- */

.features {
    background-color: var(--bg-color);
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    animation: scaleUp 0.6s ease-out; 
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 10px 30px rgba(242, 117, 94, 0.4); 
}

.feature-item .material-icons {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* ---------------- TARIFICATION ---------------- */

.pricing {
    background-color: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.price-card {
    background-color: var(--bg-color);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s, border 0.4s, box-shadow 0.4s;
    border: 3px solid transparent;
}

.price-card:hover {
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(242, 117, 94, 0.6);
    transform: scale(1.05);
}

.price-card.premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #4a00e0;
    transform: scale(1.05);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(74, 0, 224, 0.3);
    transition: all 0.3s ease;
}

.price-card.premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(74, 0, 224, 0.4);
}

.premium-badge {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    color: white !important;
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(74, 0, 224, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 0, 224, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 0, 224, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 0, 224, 0);
    }
}

.price-card.premium .price {
    color: #8e2de2;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card.premium h3 {
    color: #8e2de2;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-card.premium .cta-button.primary {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    border: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.price-card.premium .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.4);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.price-card li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--card-bg);
    font-size: 0.95rem;
}

.price-card li:last-child {
    border-bottom: none;
}

.price-card.popular {
    background-color: var(--card-bg);
    border: 3px solid var(--accent-color);
}

.price-card.popular .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background-color: #ff4500; /* Bright orange */
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* IMAGE CAROUSEL STYLE */
.carousel-section {
    padding: 100px 5%;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.carousel-swiper {
    width: 100%;
    padding: 20px 0 50px;
}

.carousel-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.carousel-swiper .swiper-slide {
    height: auto;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.carousel-swiper .swiper-button-next,
.carousel-swiper .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    z-index: 10;
}

.carousel-swiper .swiper-button-prev {
    left: 10px;
}

.carousel-swiper .swiper-button-next {
    right: 10px;
}

.carousel-swiper .swiper-button-next:after,
.carousel-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.carousel-swiper .swiper-button-next:hover,
.carousel-swiper .swiper-button-prev:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 150px;
    }
}

/* COMPATIBILITY SECTION STYLE */
.compatibility-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    margin: 60px 0;
}

.compatibility-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.compatibility-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.compatibility-text h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.compatibility-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.compatibility-image {
    flex: 1;
    text-align: center;
}

.compatibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.compatibility-image img:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .compatibility-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .compatibility-text {
        padding-right: 0;
        text-align: center;
    }
    
    .compatibility-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

.compatibility-section h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.compatibility-image {
    max-width: 80%; 
    height: auto; 
    border-radius: 8px;
    display: block; 
    margin: 0 auto; 
}


/* ---------------- NOUVELLE SECTION : REVIEWS ---------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.review-card p.quote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-card p.author {
    font-weight: 700;
    color: var(--accent-color);
}

/* ---------------- NOUVELLE SECTION : FAQ (ACCORDÉON) ---------------- */

.faq {
    background-color: var(--bg-color);
}

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

.faq-item {
    background-color: var(--dark-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #2e2e2e;
}

.faq-question .material-icons {
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: #111;
    color: #ccc;
}

.faq-item.active .faq-answer {
    max-height: 200px; 
    padding: 15px 20px 20px;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
}

/* ---------------- CHANNELS SECTION ---------------- */

.channels-section {
    background-color: var(--bg-color);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.channels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00b4d8, #a18cd1);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
    z-index: 1;
}

.channels-section .section-title {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.channels-section .section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.channel-item {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.channel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(161, 140, 209, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.channel-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 180, 216, 0.3);
}

.channel-item:hover::before {
    opacity: 1;
}

.channel-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 8px 15px rgba(0, 180, 216, 0.3));
}

.channel-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(10%) brightness(1.1) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    transform: translateZ(0);
    position: relative;
    z-index: 1;
}

.channel-item span {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.cta-channels {
    margin-top: 30px;
}

.cta-channels p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ---------------- FOOTER ---------------- */

.footer {
    background-color: var(--bg-color);
    color: #aaa;
    padding: 30px 5%;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links a {
    color: #aaa;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ---------------- Floating Buttons ---------------- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; 
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    animation: fadeIn 0.5s ease-out;
}

.whatsapp-float:hover {
    transform: scale(1.1); 
}

/* ---------------- MEDIA QUERIES (Responsiveness) ---------------- */

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    .header {
        padding: 15px 5%;
    }

    .logo img {
        height: 35px; 
    }

    /* Hide the default menu on mobile */
    .nav-list {
        position: absolute;
        top: 70px; 
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        display: none; 
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        margin: 0;
        z-index: 1000;
    }

    /* Show the menu when JS adds the 'open' class */
    .nav-list.open {
        display: flex; 
    }

    /* Show the menu button */
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle .material-icons {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .action-group {
        flex-direction: column;
    }
    
    .feature-grid {
        justify-content: center;
    }

    .feature-item {
        width: 100%;
        max-width: 350px;
    }

    .compatibility-section h3 {
        font-size: 1.5rem; 
    }

    .compatibility-image {
        max-width: 95%; 
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .channel-item {
        padding: 20px 10px;
        border-radius: 12px;
    }
    
    .channel-item img {
        width: 50px;
        height: 50px;
    }
    
    .channel-item span {
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .channel-item {
        padding: 15px 5px;
    }
    
    .channel-item img {
        width: 45px;
        height: 45px;
    }
    
    .channel-item span {
        font-size: 0.75rem;
    }
}

/* ================= PRICING ================= */
.pricing {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
}

.pricing:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.price-card {
    background: rgba(22, 33, 62, 0.7);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 180, 216, 0.3);
}

.price-card:hover::before {
    opacity: 1;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    width: 160px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 180, 216, 0.3);
    z-index: 1;
}

.price-card h3 {
    font-size: 1.4rem;
    margin: 0 0 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.price-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 20px 0;
    color: #fff;
    position: relative;
    display: inline-block;
}

.price::before {
    content: '€';
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
    opacity: 0.8;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.price-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.price-card ul li:hover {
    color: #fff;
    padding-left: 40px;
}

.price-card ul li:before {
    content: '✓';
    color: #00b4d8;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.price-card .cta-button {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-card .cta-button.primary {
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    border: none;
    color: white;
}

.price-card .cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}

/* Style pour la carte 2 YEARS avec des couleurs uniques */
.price-card.premium {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.9), rgba(20, 10, 40, 0.95));
    transform: scale(1.03);
    z-index: 2;
    overflow: visible;
}

.price-card.premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 50%, #a18cd1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.price-card.premium:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(161, 140, 209, 0.4);
}

/* Style du badge BEST DEAL pour 2 YEARS */
.badge.premium-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #ff9a9e, #a18cd1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(161, 140, 209, 0.5);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(157, 78, 221, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0);
    }
}

/* Style du prix pour la carte 2 YEARS */
.price-card.premium .price {
    font-size: 3rem;
    background: linear-gradient(45deg, #ff9a9e, #a18cd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin: 15px 0 25px;
}

/* Style spécial pour les boutons de la carte 2 YEARS */
.price-card.premium .cta-button.primary {
    background: linear-gradient(45deg, #a18cd1, #fbc2eb);
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.price-card.premium .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(161, 140, 209, 0.6);
}

.price-card.premium .cta-button.primary::after {
    content: '✨';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    opacity: 0.8;
}

/* ================= REVIEWS ================= */
.reviews {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background-color: var(--section-bg);
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00b4d8, #a18cd1);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

.reviews h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.reviews .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ================= FEATURES ================= */
.features {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--section-bg);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00b4d8, #a18cd1);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

.features h2 {
    text-align: center;
    color: white;
    margin: 0 auto 60px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00b4d8, #a18cd1);
    border-radius: 3px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: 350px;
    width: 100%;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(161, 140, 209, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 180, 216, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item .material-icons {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00b4d8, #a18cd1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover .material-icons {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #a18cd1);
    transition: width 0.3s ease;
}

.feature-item:hover h3::after {
    width: 70px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    max-width: 320px;
    margin: 0 auto;
}

/* Card animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.feature-item:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.feature-item:nth-child(2) {
    animation: float 6s ease-in-out 0.5s infinite;
}

.feature-item:nth-child(3) {
    animation: float 6s ease-in-out 1s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        padding: 70px 0;
    }
    
    .features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-item {
        padding: 40px 25px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.review-card {
    background: rgba(26, 26, 45, 0.7);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-right: 0;
}

.reviewer-info h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 1.1rem;
}

.reviewer-info p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 5px 0;
}

.star {
    color: #ffc107;
    font-size: 1.1rem;
}

.star.half {
    position: relative;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #555;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-left: 10px;
    display: inline-block;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
}

.quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #00b4d8;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.helpful-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.helpful-btn:hover {
    background: rgba(0, 180, 216, 0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 70px 5%;
    }
    
    .reviews h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .verified-badge {
        align-self: flex-start;
    }
    
    .review-helpful {
        flex-wrap: wrap;
    }
}

/* ---------------- Telegram Floating Button ---------------- */
.telegram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px; /* Positioned above the WhatsApp button */
    right: 40px;
    background-color: #0088cc; /* Telegram blue */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    animation: fadeIn 0.5s ease-out;
}

.telegram-float:hover {
    transform: scale(1.1);
    background-color: #0077b5; /* Slightly darker on hover */
}

/* Responsive styles for floating buttons */
@media (max-width: 768px) {
    .telegram-float {
        width: 50px;
        height: 50px;
        bottom: 90px; /* Positioned above the WhatsApp button */
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}