:root {
    --primary: #004aad;
    --primary-light: #e8f1ff;
    --secondary: #f0b723;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --dark: #1a1d26;
    --light: #ffffff;
    --gray: #6b7280;
    --gray-light: #f9fafb;
    --gray-border: #e5e7eb;
    --transition: all 0.3s ease;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --gold: #D4AF37;
    --green: #0a7b3a;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 10px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transform: translateY(0);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s ease forwards;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background-color: var(--primary);*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}
.logo-icon img{
    width: 40px;
    height: 40px;
    margin: 10px;
}
.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-menu li:nth-child(1) a { animation: fadeInDown 0.5s ease 0.2s forwards; }
.nav-menu li:nth-child(2) a { animation: fadeInDown 0.5s ease 0.3s forwards; }
.nav-menu li:nth-child(3) a { animation: fadeInDown 0.5s ease 0.4s forwards; }
.nav-menu li:nth-child(4) a { animation: fadeInDown 0.5s ease 0.5s forwards; }
.nav-menu li:nth-child(5) a { animation: fadeInDown 0.5s ease 0.6s forwards; }
.nav-menu li:nth-child(6) a { animation: fadeInDown 0.5s ease 0.7s forwards; }

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 1s ease 0.3s forwards;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #003a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.bar{
    height: 4px;
    width: 150px;
    margin:0 auto 0 auto;
    background: #f0b723;
}
/* Hero Section */
.hero {
    /* padding-top: 180px;*/
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
}

.hero.visible .hero-content {
    animation: fadeInLeft 1s ease 0.3s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 14px;
    border: 1px solid rgba(0, 74, 173, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.hero.visible .hero-badge {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    opacity: 0;
    transform: translateY(20px);
}

.hero.visible .hero-title {
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 540px;
    opacity: 0;
    transform: translateY(20px);
}

.hero.visible .hero-description {
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

.hero.visible .hero-actions {
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    /* padding-top: 40px;*/
    border-top: 1px solid var(--gray-border);
    opacity: 0;
    transform: translateY(20px);
}

.hero.visible .hero-stats {
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
}

.visible .hero-image {
    animation: fadeInRight 1s ease 0.5s forwards;
}

.phone-mockup {
    width: 340px;
    height: 640px;
    background: #111;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 74, 173, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 1s ease;
}

.visible .phone-mockup {
    transform: perspective(1000px) rotateY(0deg);
}

.phone-screen {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, #004aad, #3a7bd5);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;

    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}

.visible .phone-screen {
    opacity: 1;
    transform: scale(1);
}

.app-logo {
    width: 120px;
    height: 120px;
    background-color: #ffffff;

    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(0);
    transition: transform 0.5s ease 1.2s;
}
.app-logo img {
    margin: 5px;
    width: 110px;
    height: 110px;
}
.hero.visible .app-logo {
    transform: scale(1);
}

.phone-screen h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 1.4s, transform 0.5s ease 1.4s;
}

.visible .phone-screen h3 {
    opacity: 1;
    transform: translateY(0);
}

.phone-screen p {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 1.5s, transform 0.5s ease 1.5s;
}

.visible .phone-screen p {
    opacity: 0.9;
    transform: translateY(0);
}

.download-badge {
    display: flex;
    align-items: center;
    background-color: white;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 1.6s, transform 0.5s ease 1.6s;
}

.hero.visible .download-badge {
    opacity: 1;
    transform: translateY(0);
}
.banner {
    margin-top: 20px;
    padding: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(255, 255, 255, 0) 100%);

}
.banner .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}
.banner .container img {
    width: 100%;
    height: 100%;

}
/* Stats Banner */
.stats-banner {
    background-color: var(--primary);
    padding: 80px 0;
    border-radius: var(--radius);
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.stat-item  {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}
.hero-stats-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    transform: translateY(30px);
}

.stats-banner.visible .stat-item {
    animation: fadeInUp 0.8s ease forwards;
}

.stats-banner.visible .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats-banner.visible .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats-banner.visible .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats-banner.visible .stat-item:nth-child(4) { animation-delay: 0.4s; }
.stats-banner.visible .stat-item:nth-child(5) { animation-delay: 0.5s; }
.stats-banner.visible .stat-item:nth-child(6) { animation-delay: 0.6s; }

.stat-item i {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stats-banner .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-banner .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-stats-item i {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.hero-stats-item .stat-number {
    font-size: 36px;
    font-weight: 700;

    margin-bottom: 10px;
    line-height: 1;
}

.hero-stats-item .stat-label {
    font-size: 16px;
    font-weight: 500;
}

/* Section Title Style */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0px;
    opacity: 0;
    transform: translateY(30px);
}

section.visible .section-header {
    animation: fadeInUp 0.8s ease forwards;
}

.section-subtitle {
    color: var(--primary);
    font-weight: bold;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
}

/* About Section */
.about {
    background-color: var(--gray-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
}

.about.visible .about-content {
    animation: fadeInLeft 0.8s ease forwards;
}

.about-image {
    opacity: 0;
    transform: translateX(30px);
}

.about.visible .about-image {
    animation: fadeInRight 0.8s ease forwards;
}

.about-features {
    list-style: none;
    margin-top: 40px;
}

.about-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.about-features i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 5px;
}

/* Offers Section */
.offers {
    background-color: var(--light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.offer-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 50px 40px;
    transition: var(--transition);
    border: 1px solid var(--gray-border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.offers.visible .offer-card {
    animation: fadeInUp 0.8s ease forwards;
}

.offers.visible .offer-card:nth-child(1) { animation-delay: 0.1s; }
.offers.visible .offer-card:nth-child(2) { animation-delay: 0.3s; }
.offers.visible .offer-card:nth-child(3) { animation-delay: 0.5s; }

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.offer-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: white;
    transform: scale(0);
    transition: transform 0.5s ease 0.3s;
}

.offers.visible .offer-icon {
    transform: scale(1);
}

.offer-1 .offer-icon {
    background-color: var(--primary);
}

.offer-2 .offer-icon {
    background-color: #3a7bd5;
}

.offer-3 .offer-icon {
    background-color: #f0b723;
}

.offer-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.offer-card p {
    color: var(--gray);
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    margin-bottom: 40px;
    width: 100%;
}

.offer-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    opacity: 0;
    transform: translateX(-20px);
}

.offers.visible .offer-features li {
    animation: fadeInLeft 0.5s ease forwards;
}

.offers.visible .offer-features li:nth-child(1) { animation-delay: 0.5s; }
.offers.visible .offer-features li:nth-child(2) { animation-delay: 0.6s; }
.offers.visible .offer-features li:nth-child(3) { animation-delay: 0.7s; }
.offers.visible .offer-features li:nth-child(4) { animation-delay: 0.8s; }

.offer-features i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 14px;
}

/* App Features Section */
.app-features {
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.app-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--primary-light);
    z-index: 0;
    opacity: 0.5;
    transform: scale(0);
    transition: transform 1s ease;
}

.app-features.visible::before {
    transform: scale(1);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
}

.app-features.visible .feature-item {
    animation: fadeInLeft 0.8s ease forwards;
}

.app-features.visible .feature-item:nth-child(1) { animation-delay: 0.1s; }
.app-features.visible .feature-item:nth-child(2) { animation-delay: 0.3s; }
.app-features.visible .feature-item:nth-child(3) { animation-delay: 0.5s; }
.app-features.visible .feature-item:nth-child(4) { animation-delay: 0.7s; }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: scale(0);
}

.app-features.visible .feature-icon {
    animation: scaleIn 0.5s ease forwards;
}

.app-features.visible .feature-item:nth-child(1) .feature-icon { animation-delay: 0.2s; }
.app-features.visible .feature-item:nth-child(2) .feature-icon { animation-delay: 0.4s; }
.app-features.visible .feature-item:nth-child(3) .feature-icon { animation-delay: 0.6s; }
.app-features.visible .feature-item:nth-child(4) .feature-icon { animation-delay: 0.8s; }

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
}

/* Team Section */
.team {
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.team.visible .team-member {
    animation: fadeInUp 0.8s ease forwards;
}

.team.visible .team-member:nth-child(1) { animation-delay: 0.1s; }
.team.visible .team-member:nth-child(2) { animation-delay: 0.3s; }
.team.visible .team-member:nth-child(3) { animation-delay: 0.5s; }

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.member-image {
    height: 280px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.team-member:hover .member-image {
    transform: scale(1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.member-info p {
    color: var(--gray);
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.testimonials.visible .testimonial-card {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonials.visible .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials.visible .testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonials.visible .testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(10px);
}

.testimonials.visible .testimonial-rating {
    animation: fadeInUp 0.5s ease forwards;
}

.testimonials.visible .testimonial-card:nth-child(1) .testimonial-rating { animation-delay: 0.3s; }
.testimonials.visible .testimonial-card:nth-child(2) .testimonial-rating { animation-delay: 0.5s; }
.testimonials.visible .testimonial-card:nth-child(3) .testimonial-rating { animation-delay: 0.7s; }

.testimonial-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(10px);
}

.testimonials.visible .testimonial-text {
    animation: fadeInUp 0.5s ease forwards;
}

.testimonials.visible .testimonial-card:nth-child(1) .testimonial-text { animation-delay: 0.4s; }
.testimonials.visible .testimonial-card:nth-child(2) .testimonial-text { animation-delay: 0.6s; }
.testimonials.visible .testimonial-card:nth-child(3) .testimonial-text { animation-delay: 0.8s; }

.testimonial-author {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
}

.testimonials.visible .testimonial-author {
    animation: fadeInLeft 0.5s ease forwards;
}

.testimonials.visible .testimonial-card:nth-child(1) .testimonial-author { animation-delay: 0.5s; }
.testimonials.visible .testimonial-card:nth-child(2) .testimonial-author { animation-delay: 0.7s; }
.testimonials.visible .testimonial-card:nth-child(3) .testimonial-author { animation-delay: 0.9s; }

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-weight: 600;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #3a7bd5);
    color: white;
    border-radius: var(--radius);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.cta-section.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 1s ease;
}

.cta-section.visible::before {
    transform: scale(1);
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
}

.cta-section.visible h2 {
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
}

.cta-section.visible p {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.cta-buttons {

    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
}

.cta-section.visible .cta-buttons {
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 40px;
    opacity: 0;
    transform: translateY(30px);
}

footer.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
}

footer.visible .footer-logo {
    animation: fadeInLeft 0.8s ease 0.3s forwards;
}

.footer-about p {
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
}

footer.visible .footer-about p {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
}

footer.visible .footer-links h3, footer.visible .footer-contact h3 {
    animation: fadeInUp 0.8s ease forwards;
}

footer.visible .footer-links:nth-child(2) h3 { animation-delay: 0.4s; }
footer.visible .footer-links:nth-child(3) h3 { animation-delay: 0.5s; }
footer.visible .footer-contact h3 { animation-delay: 0.6s; }

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-10px);
}

footer.visible .footer-links li {
    animation: fadeInLeft 0.5s ease forwards;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a0a0a0;
    opacity: 0;
    transform: translateX(-10px);
}

footer.visible .footer-contact p {
    animation: fadeInLeft 0.5s ease forwards;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

footer.visible .social-links a {
    animation: fadeInUp 0.5s ease forwards;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #2d2d2d;
    color: #a0a0a0;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
}

footer.visible .copyright {
    animation: fadeInUp 0.8s ease 1s forwards;
}
/* Conteneur des icônes en bas à droite */
.contact-icons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

/* WhatsApp Module */
.whatsapp-container {
    position: relative;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    position: relative;
}

.whatsapp-icon:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
}

.whatsapp-icon.pulsing {
    animation: pulse 2s infinite;
}

.whatsapp-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: white;
    color: var(--dark);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 250px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--gray-border);
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.whatsapp-bubble.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-bubble h4 {
    color: var(--whatsapp-dark);
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-bubble p {
    margin-bottom: 15px;
    color: var(--gray);
}

.whatsapp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 14px;
}

.whatsapp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    color: var(--whatsapp-dark);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-action:hover {
    background-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-action i {
    font-size: 18px;
}

/* Chatbot Assistant */
.chatbot-container {
    position: relative;
}

.chatbot-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 74, 173, 0.3);
    transition: var(--transition);
}

.chatbot-icon:hover {
    background-color: #003a8a;
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.chatbot-window.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.chatbot-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h3 {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.message.bot {
    background-color: var(--primary-light);
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background-color: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    padding: 20px;
    border-top: 1px solid var(--gray-border);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-border);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--primary);
}

.chatbot-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background-color: #003a8a;
}

.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-question {
    background-color: rgba(0, 74, 173, 0.1);
    color: var(--primary);
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.quick-question:hover {
    background-color: var(--primary-light);
}
/* Chatbot Assistant */
/*
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}

.chatbot-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 74, 173, 0.3);
    transition: var(--transition);
}

.chatbot-icon:hover {
    background-color: #003a8a;
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.chatbot-window.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.chatbot-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h3 {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.message.bot {
    background-color: var(--primary-light);
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background-color: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    padding: 20px;
    border-top: 1px solid var(--gray-border);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-border);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--primary);
}

.chatbot-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background-color: #003a8a;
}

.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-question {
    background-color: rgba(0, 74, 173, 0.1);
    color: var(--primary);
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.quick-question:hover {
    background-color: var(--primary-light);
}*/

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .solution-hero-title {
        font-size: 48px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-container, .features-container, .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        order: -1;
    }

    .offers-grid, .team-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chatbot-window {
        width: 300px;
        height: 450px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-image {
        order: -1;
    }

    .detail-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner {
        margin-top: 80px;


    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats-container, .offers-grid, .team-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 80px 30px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        width: 300px;
        height: 560px;
    }

    .chatbot-window {
        width: calc(100vw - 60px);
        right: -100vw;
        bottom: 80px;
    }

    .chatbot-window.active {
        right: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

.solution-hero-title {
    font-size: 36px;
}

.section-title {
    font-size: 36px;
}

.solutions-grid {
    grid-template-columns: 1fr;
}

.process-steps {
    grid-template-columns: 1fr;
}

.cta-section {
    padding: 80px 30px;
}

.cta-section h2 {
    font-size: 36px;
}



.btn-cta {
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-cta:hover {
    background-color: #d4a82c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 480px) {
    .banner {
        margin-top: 80px;
    }
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }

    .solution-hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .solution-header, .solution-content, .solution-footer {
        padding: 30px 25px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

