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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

/* Top Bar - Contact Info */
.top-bar {
    
    /* Define a gradient with more distinct colors and more stops */
    background: linear-gradient(
        135deg,
        #85E502 0%,         /* Bright Green */
        #000818 25%,        /* Vibrant Blue */
        #4CAF50 50%,        /* Medium Green */
        #85E502 75%,        /* Darker Blue */
        #85E502 100%        /* Loop back to green for seamless transition */
    );
    /* Make the background significantly larger than the element */
    /* This allows for a sweeping movement across the visible area */
    background-size: 400% 400%;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    /* Apply the animation */
    /* 'wowGradient' is the name of our keyframes */
    /* DECREASED DURATION HERE for a faster animation */
    /* '10s' sets the duration for one full cycle (faster but still smooth) */
    /* 'linear' ensures a constant speed throughout the animation */
    /* 'infinite' makes it loop forever */
    /* 'alternate' makes it play forwards then backwards, creating a smooth, continuous flow */
    animation: wowGradient 10s linear infinite alternate;
    overflow: hidden; /* Ensures the larger background doesn't create scrollbars */
}

/* Keyframes for the gradient animation */
@keyframes wowGradient {
    0% {
        background-position: 0% 0%; /* Start from the top-left corner of the large background */
    }
    100% {
        background-position: 100% 100%; /* Move to the bottom-right corner of the large background */
    }
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 16px;
}

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

.social-links a {
    color: white;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    padding: 15px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #85E502;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
    transition: width 0.3s ease;
}

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

/* CTA Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    border: 2px solid #85E502;
    color: #85E502;
    background: transparent;
}

.btn-outline:hover {
    background: #85E502;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(133, 229, 2, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(133, 229, 2, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Drawer Overlay and Mobile Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: white;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    display: none;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-drawer .nav-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-drawer .nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-drawer .nav-menu a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-drawer .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}

.mobile-drawer .btn {
    width: 100%;
    justify-content: center;
}

body.drawer-open {
    overflow: hidden;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }
    .contact-info {
        gap: 15px;
    }
    .contact-item span {
        display: none;
    }
    .social-links {
        gap: 10px;
    }
    .main-nav {
        padding: 12px 0;
    }
    .logo img {
        height: 37px;
    }
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    .drawer-menu {
        display: flex;
        list-style: none;
        gap: 20px;
        padding: 20px 0px;
        align-items: center;
        flex-direction: column;
    }
    
    .drawer-menu li a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 16px;
        position: relative;
        padding: 8px 0;
        transition: color 0.3s ease;
    }
    
    .drawer-menu li a:hover {
        color: #85E502;
    }
    
    .drawer-menu li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
        transition: width 0.3s ease;
    }
    
    .drawer-menu li a:hover::after {
        width: 100%;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-drawer {
        display: block;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 0 15px;
    }
    .nav-container {
        padding: 0 15px;
        display: flex;
        gap: 15px;
    }
    .contact-info {
        gap: 10px;
    }
    .logo img {
        height: 35px;
    }
}

/* FontAwesome Icons (CDN will be loaded) */
.fa {
    font-family: FontAwesome;
}

/* Temporary body padding to show header properly */
body {
    padding-top: 80px;
}
/* Footer Styles */
.footer {
    background: #010F2B;
    color: white;
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #010F2B 0%, #0a1a3a 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Company Info Section */
.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #b8c5d1;
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(133, 229, 2, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(133, 229, 2, 0.2);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #85E502;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #b8c5d1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Sections */
.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #85E502;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #85E502;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #85E502;
    padding-left: 8px;
}

.footer-section ul li a i {
    font-size: 14px;
    width: 16px;
}

/* Contact Section */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(133, 229, 2, 0.1);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: #85E502;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #010F2B;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-info h5 {
    font-size: 14px;
    color: #85E502;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.footer-contact-info p {
    color: #b8c5d1;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.footer-contact-info a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #85E502;
}

/* Social Media */
.footer-social-media {
    margin-top: 25px;
}

.footer-social-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #85E502;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8c5d1;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-link:hover {
    background: #85E502;
    color: #010F2B;
    transform: translateY(-3px);
    border-color: #85E502;
}

/* Newsletter Signup */
.footer-newsletter {
    background: rgba(133, 229, 2, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(133, 229, 2, 0.2);
}

.footer-newsletter h4 {
    color: #85E502;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: #b8c5d1;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-input {
    padding: 12px 15px;
    border: 2px solid rgba(133, 229, 2, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: #b8c5d1;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: #85E502;
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-btn {
    padding: 12px 20px;
    background: #85E502;
    color: #010F2B;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-newsletter-btn:hover {
    background: #9ef002;
    transform: translateY(-2px);
}

/* Bottom Footer */
.footer-bottom {
    background: #000814;
    padding: 25px 0;
    border-top: 1px solid rgba(133, 229, 2, 0.2);
}

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

.footer-copyright {
    color: #b8c5d1;
    font-size: 14px;
    margin: 0;
}

.footer-policies {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-policies a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #85E502;
}

.footer-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #85E502;
    color: #010F2B;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.footer-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.footer-back-to-top:hover {
    background: #9ef002;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

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

    .footer-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 12px;
    }

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

    .footer-contact-item {
        padding: 12px;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-policies {
        justify-content: center;
    }

    .footer-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-bottom-content {
        padding: 0 15px;
    }

    .footer-stats {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .footer-policies {
        flex-direction: column;
        gap: 10px;
    }
}
/* Hero Section Specific Styles */
.vitalogs-hero {
    background: #010F2B;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.vitalogs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%2385E502" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.vitalogs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vitalogs-hero-content {
    color: white;
}
.vitalogs-hero-content a{
    text-decoration: none;
    color: white;
}
.vitalogs-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(133, 229, 2, 0.1);
    border: 1px solid rgba(133, 229, 2, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: #85E502;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.vitalogs-hero-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.vitalogs-hero-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #85E502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vitalogs-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.vitalogs-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.vitalogs-hero-feature {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(133, 229, 2, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vitalogs-hero-feature:hover {
    background: rgba(133, 229, 2, 0.1);
    border-color: rgba(133, 229, 2, 0.4);
    transform: translateY(-2px);
}

.vitalogs-hero-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.vitalogs-hero-feature-icon i {
    color: #010F2B;
    font-size: 20px;
}

.vitalogs-hero-feature-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.vitalogs-hero-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.vitalogs-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.vitalogs-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vitalogs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.vitalogs-btn:hover::before {
    left: 100%;
}

.vitalogs-btn-primary {
    background: linear-gradient(135deg, #85E502, #a8f542);
    color: #010F2B;
    box-shadow: 0 8px 32px rgba(133, 229, 2, 0.3);
}

.vitalogs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(133, 229, 2, 0.4);
}

.vitalogs-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.vitalogs-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #85E502;
    color: #85E502;
    transform: translateY(-2px);
}

.vitalogs-btn i {
    margin-right: 8px;
}



.vitalogs-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vitalogs-hero-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.vitalogs-hero-image:hover {
    transform: scale(1.05);
}

.vitalogs-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.vitalogs-hero-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #999;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
}

.vitalogs-hero-placeholder i {
    font-size: 60px;
    margin-bottom: 10px;
    color: #85E502;
}

.vitalogs-hero-placeholder h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #010F2B;
}

.vitalogs-hero-placeholder p {
    font-size: 0.9rem;
    color: #666;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: floatRandom 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: -12s;
}

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-60px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .vitalogs-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    .vitalogs-hero-image {
        height: 100%;
    }

    .vitalogs-hero-visual {
        order: -1;
    }

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

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

@media (max-width: 640px) {
    .vitalogs-hero {
        padding: 60px 0 40px;
    }

    .vitalogs-hero-container {
        padding: 0 16px;
    }

    .vitalogs-hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .vitalogs-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vitalogs-hero-feature {
        padding: 12px;
    }
}
/* Services Section */
.vitalogs-services {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vitalogs-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><g fill="none" fill-rule="evenodd"><g fill="%23010F2B" fill-opacity="0.02"><polygon points="50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40"/></g></g></svg>');
    animation: patternFloat 25s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(20px) translateY(-20px); }
    50% { transform: translateX(-20px) translateY(20px); }
    75% { transform: translateX(20px) translateY(20px); }
}

.vitalogs-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vitalogs-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.vitalogs-services-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(1, 15, 43, 0.08);
    border: 1px solid rgba(1, 15, 43, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #010F2B;
    margin-bottom: 24px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.vitalogs-services-badge i {
    margin-right: 8px;
    color: #85E502;
}

.vitalogs-services-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #010F2B;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.vitalogs-services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 2px;
}

.vitalogs-services-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vitalogs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.vitalogs-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(1, 15, 43, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.vitalogs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vitalogs-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(133, 229, 2, 0.2);
    box-shadow: 0 20px 50px rgba(1, 15, 43, 0.15);
}

.vitalogs-service-card:hover::before {
    transform: scaleX(1);
}

.vitalogs-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #010F2B, #1a2c5a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.vitalogs-service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(133, 229, 2, 0.3), transparent);
    transition: left 0.5s;
}

.vitalogs-service-card:hover .vitalogs-service-icon {
    background: linear-gradient(135deg, #85E502, #a8f542);
    transform: scale(1.1) rotate(5deg);
}

.vitalogs-service-card:hover .vitalogs-service-icon::before {
    left: 100%;
}

.vitalogs-service-icon i {
    font-size: 32px;
    color: #85E502;
    transition: all 0.3s ease;
}

.vitalogs-service-card:hover .vitalogs-service-icon i {
    color: #010F2B;
    transform: scale(1.1);
}

.vitalogs-service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #010F2B;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.vitalogs-service-card:hover .vitalogs-service-title {
    color: #85E502;
}

.vitalogs-service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.vitalogs-service-features {
    list-style: none;
    margin-bottom: 24px;
}

.vitalogs-service-features li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.vitalogs-service-features li:hover {
    color: #85E502;
}

.vitalogs-service-features i {
    color: #85E502;
    margin-right: 10px;
    font-size: 12px;
    width: 16px;
}

.vitalogs-service-price {
    background: linear-gradient(135deg, rgba(133, 229, 2, 0.1), rgba(133, 229, 2, 0.05));
    border: 1px solid rgba(133, 229, 2, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 20px;
    text-align: center;
}

.vitalogs-service-price-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

.vitalogs-service-price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #85E502;
}

.vitalogs-services-cta {
    text-align: center;
    margin-top: 60px;
}

.vitalogs-services-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #010F2B, #1a2c5a);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vitalogs-services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.vitalogs-services-btn:hover {
    background: linear-gradient(135deg, #85E502, #a8f542);
    color: #010F2B;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(133, 229, 2, 0.3);
}

.vitalogs-services-btn:hover::before {
    left: 100%;
}

.vitalogs-services-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.vitalogs-services-btn:hover i {
    transform: translateX(5px);
}

/* Floating Elements */
.vitalogs-services-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.vitalogs-floating-element {
    position: absolute;
    opacity: 0.05;
    animation: serviceFloat 20s ease-in-out infinite;
}

.vitalogs-floating-element:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: -3s;
}

.vitalogs-floating-element:nth-child(2) {
    top: 70%;
    right: 12%;
    animation-delay: -8s;
}

.vitalogs-floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: -15s;
}

@keyframes serviceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-40px) rotate(120deg); }
    66% { transform: translateY(-20px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vitalogs-services-container {
        padding: 0 24px;
    }

    .vitalogs-services-grid {
        gap: 25px;
    }

    .vitalogs-service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 968px) {
    .vitalogs-services {
        padding: 80px 0;
    }

    .vitalogs-services-header {
        margin-bottom: 60px;
    }

    .vitalogs-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vitalogs-service-card {
        padding: 30px 20px;
    }

    .vitalogs-service-icon {
        width: 70px;
        height: 70px;
    }

    .vitalogs-service-icon i {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .vitalogs-services {
        padding: 60px 0;
    }

    .vitalogs-services-container {
        padding: 0 16px;
    }

    .vitalogs-services-header {
        margin-bottom: 40px;
    }

    .vitalogs-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vitalogs-service-card {
        padding: 25px 20px;
    }

    .vitalogs-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .vitalogs-service-icon i {
        font-size: 24px;
    }

    .vitalogs-service-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .vitalogs-service-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .vitalogs-services-btn {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vitalogs-service-card {
        padding: 20px 16px;
    }

    .vitalogs-service-features li {
        font-size: 0.85rem;
    }

    .vitalogs-services-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}
/* Why Choose Section */
.vitalogs-why-choose {
    background: linear-gradient(135deg, #010F2B 0%, #0a1a3a 50%, #1a2c5a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vitalogs-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><g fill="none" fill-rule="evenodd"><g fill="%2385E502" fill-opacity="0.03"><circle cx="40" cy="40" r="3"/><circle cx="10" cy="10" r="2"/><circle cx="70" cy="70" r="2"/></g></g></svg>');
    animation: backgroundShift 30s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(30px) translateY(-30px); }
    50% { transform: translateX(-30px) translateY(30px); }
    75% { transform: translateX(30px) translateY(30px); }
}

.vitalogs-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vitalogs-why-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.vitalogs-why-choose-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(133, 229, 2, 0.15);
    border: 1px solid rgba(133, 229, 2, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #85E502;
    margin-bottom: 24px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(133, 229, 2, 0.2); }
    50% { box-shadow: 0 0 30px rgba(133, 229, 2, 0.4); }
}

.vitalogs-why-choose-badge i {
    margin-right: 8px;
}

.vitalogs-why-choose-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #85E502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vitalogs-why-choose-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vitalogs-why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.vitalogs-advantages {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vitalogs-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(133, 229, 2, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vitalogs-advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(133, 229, 2, 0.1), transparent);
    transition: left 0.6s;
}

.vitalogs-advantage-item:hover::before {
    left: 100%;
}

.vitalogs-advantage-item:hover {
    background: rgba(133, 229, 2, 0.08);
    border-color: rgba(133, 229, 2, 0.3);
    transform: translateX(10px);
}

.vitalogs-advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vitalogs-advantage-item:hover .vitalogs-advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.vitalogs-advantage-icon i {
    font-size: 24px;
    color: #010F2B;
}

.vitalogs-advantage-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.vitalogs-advantage-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.vitalogs-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vitalogs-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(133, 229, 2, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vitalogs-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vitalogs-stat-card:hover {
    background: rgba(133, 229, 2, 0.1);
    border-color: rgba(133, 229, 2, 0.4);
    transform: translateY(-5px);
}

.vitalogs-stat-card:hover::before {
    transform: scaleX(1);
}

.vitalogs-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.vitalogs-stat-card:hover .vitalogs-stat-icon {
    transform: scale(1.05) rotate(-5deg);
}

.vitalogs-stat-icon i {
    font-size: 28px;
    color: #010F2B;
}

.vitalogs-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #85E502;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.vitalogs-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 8px;
}

.vitalogs-stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Trust Indicators */
.vitalogs-trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.vitalogs-trust-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(133, 229, 2, 0.1);
    transition: all 0.3s ease;
}

.vitalogs-trust-item:hover {
    background: rgba(133, 229, 2, 0.08);
    border-color: rgba(133, 229, 2, 0.3);
    transform: translateY(-3px);
}

.vitalogs-trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.vitalogs-trust-item:hover .vitalogs-trust-icon {
    transform: scale(1.1);
}

.vitalogs-trust-icon i {
    font-size: 20px;
    color: #010F2B;
}

.vitalogs-trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Floating Elements */
.vitalogs-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.vitalogs-floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeFloat 25s ease-in-out infinite;
}

.vitalogs-floating-shape:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: -5s;
}

.vitalogs-floating-shape:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: -12s;
}

.vitalogs-floating-shape:nth-child(3) {
    bottom: 15%;
    left: 10%;
    animation-delay: -20s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-50px) rotate(90deg); }
    50% { transform: translateY(-100px) rotate(180deg); }
    75% { transform: translateY(-50px) rotate(270deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vitalogs-why-choose-container {
        padding: 0 24px;
    }

    .vitalogs-why-choose-content {
        gap: 60px;
    }

    .vitalogs-trust-indicators {
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .vitalogs-why-choose {
        padding: 80px 0;
    }

    .vitalogs-why-choose-header {
        margin-bottom: 60px;
    }

    .vitalogs-why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vitalogs-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .vitalogs-stat-card {
        padding: 25px 15px;
    }

    .vitalogs-stat-number {
        font-size: 2rem;
    }

    .vitalogs-trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .vitalogs-why-choose {
        padding: 60px 0;
    }

    .vitalogs-why-choose-container {
        padding: 0 16px;
    }

    .vitalogs-why-choose-header {
        margin-bottom: 40px;
    }

    .vitalogs-advantages {
        gap: 20px;
    }

    .vitalogs-advantage-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }

    .vitalogs-advantage-item:hover {
        transform: translateY(-5px);
    }

    .vitalogs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vitalogs-stat-card {
        padding: 20px 12px;
    }

    .vitalogs-stat-icon {
        width: 60px;
        height: 60px;
    }

    .vitalogs-stat-icon i {
        font-size: 24px;
    }

    .vitalogs-stat-number {
        font-size: 1.8rem;
    }

    .vitalogs-trust-indicators {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .vitalogs-advantage-icon {
        width: 50px;
        height: 50px;
    }

    .vitalogs-advantage-icon i {
        font-size: 20px;
    }

    .vitalogs-stat-number {
        font-size: 1.6rem;
    }

    .vitalogs-stat-label {
        font-size: 0.9rem;
    }
}
/* How It Works Section */
.vitalogs-how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vitalogs-how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><g fill="none" fill-rule="evenodd"><g fill="%2385E502" fill-opacity="0.02"><path d="M60 0L73.2 33.6L120 60L73.2 86.4L60 120L46.8 86.4L0 60L46.8 33.6z"/></g></g></svg>');
    animation: patternMove 35s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(40px) translateY(-40px); }
    50% { transform: translateX(-40px) translateY(40px); }
    75% { transform: translateX(40px) translateY(40px); }
    100% { transform: translateX(0px) translateY(0px); }
}

.vitalogs-how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vitalogs-how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.vitalogs-how-it-works-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(1, 15, 43, 0.08);
    border: 1px solid rgba(1, 15, 43, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    color: #010F2B;
    margin-bottom: 24px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.vitalogs-how-it-works-badge i {
    margin-right: 8px;
    color: #85E502;
    animation: iconSpin 4s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.vitalogs-how-it-works-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #010F2B;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.vitalogs-how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 2px;
    animation: underlineGrow 2s ease-in-out infinite;
}

@keyframes underlineGrow {
    0%, 100% { width: 100px; }
    50% { width: 140px; }
}

.vitalogs-how-it-works-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.vitalogs-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

/* Connection Lines */
.vitalogs-steps-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #85E502, #a8f542, #85E502);
    border-radius: 2px;
    z-index: 1;
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.vitalogs-step-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(1, 15, 43, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    overflow: hidden;
}

.vitalogs-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vitalogs-step-card:hover {
    transform: translateY(-15px);
    border-color: rgba(133, 229, 2, 0.2);
    box-shadow: 0 25px 60px rgba(1, 15, 43, 0.15);
}

.vitalogs-step-card:hover::before {
    transform: scaleX(1);
}

.vitalogs-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #85E502, #a8f542);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #010F2B;
    box-shadow: 0 5px 15px rgba(133, 229, 2, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.vitalogs-step-card:hover .vitalogs-step-number {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 8px 25px rgba(133, 229, 2, 0.5);
}

.vitalogs-step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #010F2B, #1a2c5a);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.vitalogs-step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(133, 229, 2, 0.3), transparent);
    transition: left 0.6s;
}

.vitalogs-step-card:hover .vitalogs-step-icon {
    background: linear-gradient(135deg, #85E502, #a8f542);
    transform: scale(1.1) rotate(10deg);
}

.vitalogs-step-card:hover .vitalogs-step-icon::before {
    left: 100%;
}

.vitalogs-step-icon i {
    font-size: 36px;
    color: #85E502;
    transition: all 0.3s ease;
}

.vitalogs-step-card:hover .vitalogs-step-icon i {
    color: #010F2B;
    transform: scale(1.1);
}

.vitalogs-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #010F2B;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.vitalogs-step-card:hover .vitalogs-step-title {
    color: #85E502;
}

.vitalogs-step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vitalogs-step-details {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.vitalogs-cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(1, 15, 43, 0.05), rgba(133, 229, 2, 0.05));
    border-radius: 30px;
    padding: 60px 40px;
    border: 2px solid rgba(133, 229, 2, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vitalogs-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(133, 229, 2, 0.1), transparent);
    animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.vitalogs-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #010F2B;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.vitalogs-cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.vitalogs-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.vitalogs-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vitalogs-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.vitalogs-cta-btn:hover::before {
    left: 100%;
}

.vitalogs-cta-btn-primary {
    background: linear-gradient(135deg, #85E502, #a8f542);
    color: #010F2B;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(133, 229, 2, 0.3);
}

.vitalogs-cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(133, 229, 2, 0.4);
}

.vitalogs-cta-btn-secondary {
    background: transparent;
    color: #010F2B;
    border: 2px solid #010F2B;
}

.vitalogs-cta-btn-secondary:hover {
    background: #010F2B;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1, 15, 43, 0.2);
}

.vitalogs-cta-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.vitalogs-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .vitalogs-how-it-works {
        padding: 80px 0;
    }

    .vitalogs-how-it-works-header {
        margin-bottom: 60px;
    }

    .vitalogs-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .vitalogs-steps-container::before {
        display: none;
    }

    .vitalogs-step-card {
        padding: 35px 25px;
    }

    .vitalogs-cta-section {
        padding: 50px 30px;
    }
}

@media (max-width: 640px) {
    .vitalogs-how-it-works {
        padding: 60px 0;
    }

    .vitalogs-how-it-works-container {
        padding: 0 16px;
    }

    .vitalogs-how-it-works-header {
        margin-bottom: 40px;
    }

    .vitalogs-steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .vitalogs-step-card {
        padding: 30px 20px;
    }

    .vitalogs-step-icon {
        width: 80px;
        height: 80px;
    }

    .vitalogs-step-icon i {
        font-size: 32px;
    }

    .vitalogs-step-title {
        font-size: 1.2rem;
    }

    .vitalogs-cta-section {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .vitalogs-cta-title {
        font-size: 1.6rem;
    }

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

    .vitalogs-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .vitalogs-step-card {
        padding: 25px 16px;
    }

    .vitalogs-step-icon {
        width: 70px;
        height: 70px;
    }

    .vitalogs-step-icon i {
        font-size: 28px;
    }

    .vitalogs-cta-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}
/* Coverage Section Styles */
.coverage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2385E502" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.coverage-header {
    text-align: center;
    margin-bottom: 60px;
}

.coverage-title {
    font-size: 48px;
    font-weight: 700;
    color: #010F2B;
    margin-bottom: 20px;
    position: relative;
}

.coverage-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
    border-radius: 2px;
}

.coverage-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Coverage Stats */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.coverage-stat {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coverage-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
}

.coverage-stat:hover {
    transform: translateY(-5px);
    border-color: #85E502;
    box-shadow: 0 20px 40px rgba(133, 229, 2, 0.2);
}

.coverage-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #85E502;
    display: block;
    margin-bottom: 10px;
}

.coverage-stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content Layout */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Map Section */
.coverage-map-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.coverage-map-title {
    font-size: 24px;
    font-weight: 600;
    color: #010F2B;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coverage-map-title i {
    color: #85E502;
    font-size: 28px;
}

/* Morocco Map Placeholder */
.morocco-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
}

.morocco-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="white" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
    background-size: 20px 20px;
}

.map-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.map-placeholder i {
    font-size: 48px;
    opacity: 0.8;
}

/* Map Legend */
.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

.legend-color.premium { background: #85E502; border-color: #85E502; }
.legend-color.standard { background: #FFA500; border-color: #FFA500; }
.legend-color.basic { background: #FF6B6B; border-color: #FF6B6B; }

/* Cities & Pricing Section */
.coverage-cities-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.coverage-cities-title {
    font-size: 24px;
    font-weight: 600;
    color: #010F2B;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coverage-cities-title i {
    color: #85E502;
    font-size: 28px;
}

/* Search Bar */
.city-search {
    margin-bottom: 30px;
    position: relative;
}

.city-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.city-search-input:focus {
    outline: none;
    border-color: #85E502;
    background: white;
    box-shadow: 0 0 0 3px rgba(133, 229, 2, 0.1);
}

.city-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #85E502;
    font-size: 20px;
}

/* Pricing Zones */
.pricing-zones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-zone {
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.pricing-zone:hover {
    border-color: #85E502;
    box-shadow: 0 5px 20px rgba(133, 229, 2, 0.1);
}

.pricing-zone-header {
    background: linear-gradient(135deg, #85E502 0%, #010F2B 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.pricing-zone-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-zone-info p {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-zone-price {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.pricing-zone-price span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-zone-content {
    padding: 25px;
    display: none;
}

.pricing-zone.active .pricing-zone-content {
    display: block;
}

.pricing-zone-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.pricing-zone.active .pricing-zone-toggle {
    transform: rotate(180deg);
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.city-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.city-item:hover {
    background: #85E502;
    color: white;
    border-color: #85E502;
    transform: translateY(-2px);
}

/* CTA Section */
.coverage-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #010F2B 0%, #85E502 100%);
    border-radius: 20px;
    color: white;
}

.coverage-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.coverage-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.coverage-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.coverage-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.coverage-btn-primary {
    background: white;
    color: #010F2B;
}

.coverage-btn-primary:hover {
    background: #85E502;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.coverage-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.coverage-btn-secondary:hover {
    background: white;
    color: #010F2B;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coverage-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 60px 0;
    }

    .coverage-container {
        padding: 0 15px;
    }

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

    .coverage-subtitle {
        font-size: 18px;
    }

    .coverage-map-section,
    .coverage-cities-section {
        padding: 25px;
    }

    .morocco-map {
        height: 300px;
    }

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

    .coverage-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

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

    .pricing-zone-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .coverage-cta {
        padding: 30px 20px;
    }
}
/* API Section */
/*.vitalogs-api {*/
/*    padding: 100px 0;*/
/*    background: linear-gradient(135deg, #010F2B 0%, #1a2332 100%);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.vitalogs-api::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: */
/*        radial-gradient(circle at 20% 80%, rgba(133, 229, 2, 0.1) 0%, transparent 50%),*/
/*        radial-gradient(circle at 80% 20%, rgba(133, 229, 2, 0.05) 0%, transparent 50%);*/
/*}*/

/*.vitalogs-api-floating {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    pointer-events: none;*/
/*    overflow: hidden;*/
/*}*/

/*.vitalogs-api-floating-element {*/
/*    position: absolute;*/
/*    opacity: 0.03;*/
/*    animation: float 20s infinite ease-in-out;*/
/*}*/

/*.vitalogs-api-floating-element:nth-child(1) {*/
/*    top: 10%;*/
/*    left: 10%;*/
/*    animation-delay: 0s;*/
/*}*/

/*.vitalogs-api-floating-element:nth-child(2) {*/
/*    top: 60%;*/
/*    right: 10%;*/
/*    animation-delay: -7s;*/
/*}*/

/*.vitalogs-api-floating-element:nth-child(3) {*/
/*    bottom: 20%;*/
/*    left: 50%;*/
/*    animation-delay: -14s;*/
/*}*/

/*@keyframes float {*/
/*    0%, 100% { transform: translateY(0px) rotate(0deg); }*/
/*    33% { transform: translateY(-20px) rotate(5deg); }*/
/*    66% { transform: translateY(10px) rotate(-5deg); }*/
/*}*/

/*.vitalogs-api-container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.vitalogs-api-header {*/
/*    text-align: center;*/
/*    margin-bottom: 80px;*/
/*}*/

/*.vitalogs-api-badge {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    background: rgba(133, 229, 2, 0.1);*/
/*    color: #85E502;*/
/*    padding: 12px 24px;*/
/*    border-radius: 50px;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    border: 1px solid rgba(133, 229, 2, 0.2);*/
/*    margin-bottom: 24px;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.vitalogs-api-title {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 800;*/
/*    color: white;*/
/*    margin-bottom: 24px;*/
/*    line-height: 1.2;*/
/*}*/

/*.vitalogs-api-subtitle {*/
/*    font-size: 1.25rem;*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*    max-width: 600px;*/
/*    margin: 0 auto;*/
/*    line-height: 1.6;*/
/*}*/

/* API Features Grid */
/*.vitalogs-api-features {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
/*    gap: 30px;*/
/*    margin-bottom: 80px;*/
/*}*/

/*.vitalogs-api-feature {*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    border-radius: 20px;*/
/*    padding: 40px 30px;*/
/*    backdrop-filter: blur(10px);*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.vitalogs-api-feature::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #85E502, #a3f325);*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

/*.vitalogs-api-feature:hover {*/
/*    transform: translateY(-10px);*/
/*    background: rgba(255, 255, 255, 0.08);*/
/*    border-color: rgba(133, 229, 2, 0.3);*/
/*    box-shadow: 0 20px 60px rgba(133, 229, 2, 0.1);*/
/*}*/

/*.vitalogs-api-feature:hover::before {*/
/*    opacity: 1;*/
/*}*/

/*.vitalogs-api-feature-icon {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    background: linear-gradient(135deg, #85E502, #a3f325);*/
/*    border-radius: 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 2rem;*/
/*    color: #010F2B;*/
/*    margin-bottom: 24px;*/
/*    box-shadow: 0 10px 30px rgba(133, 229, 2, 0.3);*/
/*}*/

/*.vitalogs-api-feature-title {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    color: white;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.vitalogs-api-feature-description {*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*    line-height: 1.6;*/
/*    margin-bottom: 24px;*/
/*}*/

/*.vitalogs-api-feature-list {*/
/*    list-style: none;*/
/*}*/

/*.vitalogs-api-feature-list li {*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*    margin-bottom: 8px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*}*/

/*.vitalogs-api-feature-list li i {*/
/*    color: #85E502;*/
/*    font-size: 0.9rem;*/
/*}*/

/* Code Demo Section */
/*.vitalogs-api-demo {*/
/*    background: rgba(255, 255, 255, 0.03);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    border-radius: 24px;*/
/*    padding: 50px;*/
/*    margin-bottom: 80px;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.vitalogs-api-demo-header {*/
/*    text-align: center;*/
/*    margin-bottom: 50px;*/
/*}*/

/*.vitalogs-api-demo-title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: white;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.vitalogs-api-demo-subtitle {*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*    font-size: 1.1rem;*/
/*}*/

/*.vitalogs-api-demo-tabs {*/
/*    display: flex;*/
/*    gap: 16px;*/
/*    margin-bottom: 30px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.vitalogs-api-demo-tab {*/
/*    padding: 16px 24px;*/
/*    background: none;*/
/*    border: none;*/
/*    color: rgba(255, 255, 255, 0.6);*/
/*    font-size: 1rem;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    border-bottom: 3px solid transparent;*/
/*}*/

/*.vitalogs-api-demo-tab.active {*/
/*    color: #85E502;*/
/*    border-bottom-color: #85E502;*/
/*}*/

/*.vitalogs-api-demo-tab:hover {*/
/*    color: rgba(255, 255, 255, 0.9);*/
/*}*/

/*.vitalogs-api-demo-content {*/
/*    display: none;*/
/*}*/

/*.vitalogs-api-demo-content.active {*/
/*    display: block;*/
/*}*/

/*.vitalogs-code-block {*/
/*    background: #0a0f1a;*/
/*    border: 1px solid rgba(133, 229, 2, 0.2);*/
/*    border-radius: 16px;*/
/*    padding: 30px;*/
/*    overflow-x: auto;*/
/*    position: relative;*/
/*}*/

/*.vitalogs-code-header {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: between;*/
/*    margin-bottom: 20px;*/
/*    padding-bottom: 15px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.vitalogs-code-language {*/
/*    color: #85E502;*/
/*    font-weight: 600;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.vitalogs-code-copy {*/
/*    background: rgba(133, 229, 2, 0.1);*/
/*    border: 1px solid rgba(133, 229, 2, 0.3);*/
/*    color: #85E502;*/
/*    padding: 8px 16px;*/
/*    border-radius: 8px;*/
/*    font-size: 0.8rem;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    margin-left: auto;*/
/*}*/

/*.vitalogs-code-copy:hover {*/
/*    background: rgba(133, 229, 2, 0.2);*/
/*}*/

/*.vitalogs-code-copy i {*/
/*    margin-right: 6px;*/
/*}*/

/*pre {*/
/*    color: #e6e6e6;*/
/*    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;*/
/*    font-size: 0.9rem;*/
/*    line-height: 1.6;*/
/*    margin: 0;*/
/*}*/

/*.vitalogs-code-comment { color: #7c7c7c; }*/
/*.vitalogs-code-string { color: #85E502; }*/
/*.vitalogs-code-number { color: #ff6b6b; }*/
/*.vitalogs-code-keyword { color: #4ecdc4; }*/
/*.vitalogs-code-function { color: #ffe66d; }*/

/* Integration Steps */
/*.vitalogs-integration-steps {*/
/*    margin-bottom: 80px;*/
/*}*/

/*.vitalogs-integration-title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: white;*/
/*    text-align: center;*/
/*    margin-bottom: 50px;*/
/*}*/

/*.vitalogs-steps-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*    gap: 30px;*/
/*}*/

/*.vitalogs-step {*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    border-radius: 20px;*/
/*    padding: 40px 30px;*/
/*    text-align: center;*/
/*    position: relative;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.vitalogs-step:hover {*/
/*    transform: translateY(-5px);*/
/*    background: rgba(255, 255, 255, 0.08);*/
/*    border-color: rgba(133, 229, 2, 0.3);*/
/*}*/

/*.vitalogs-step-number {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background: linear-gradient(135deg, #85E502, #a3f325);*/
/*    color: #010F2B;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 1.5rem;*/
/*    font-weight: 800;*/
/*    margin: 0 auto 24px;*/
/*}*/

/*.vitalogs-step-title {*/
/*    font-size: 1.3rem;*/
/*    font-weight: 700;*/
/*    color: white;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.vitalogs-step-description {*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*    line-height: 1.6;*/
/*}*/

/* CTA Section */
/*.vitalogs-api-cta {*/
/*    text-align: center;*/
/*    background: rgba(133, 229, 2, 0.05);*/
/*    border: 1px solid rgba(133, 229, 2, 0.2);*/
/*    border-radius: 24px;*/
/*    padding: 60px 40px;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.vitalogs-api-cta-title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: white;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.vitalogs-api-cta-subtitle {*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*    font-size: 1.1rem;*/
/*    margin-bottom: 40px;*/
/*    max-width: 600px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*.vitalogs-api-cta-buttons {*/
/*    display: flex;*/
/*    gap: 20px;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.vitalogs-api-btn {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    padding: 18px 36px;*/
/*    border-radius: 12px;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*    font-size: 1rem;*/
/*    border: 2px solid transparent;*/
/*}*/

/*.vitalogs-api-btn-primary {*/
/*    background: linear-gradient(135deg, #85E502, #a3f325);*/
/*    color: #010F2B;*/
/*    box-shadow: 0 10px 30px rgba(133, 229, 2, 0.3);*/
/*}*/

/*.vitalogs-api-btn-primary:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 15px 40px rgba(133, 229, 2, 0.4);*/
/*}*/

/*.vitalogs-api-btn-secondary {*/
/*    background: transparent;*/
/*    color: white;*/
/*    border-color: rgba(255, 255, 255, 0.3);*/
/*}*/

/*.vitalogs-api-btn-secondary:hover {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border-color: rgba(255, 255, 255, 0.5);*/
/*    transform: translateY(-3px);*/
/*}*/

/* Responsive Design */
/*@media (max-width: 768px) {*/
/*    .vitalogs-api-title {*/
/*        font-size: 2.5rem;*/
/*    }*/

/*    .vitalogs-api-features {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

/*    .vitalogs-api-demo {*/
/*        padding: 30px 20px;*/
/*    }*/

/*    .vitalogs-api-demo-tabs {*/
/*        flex-direction: column;*/
/*        gap: 8px;*/
/*    }*/

/*    .vitalogs-steps-grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

/*    .vitalogs-api-cta-buttons {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/
/*}*/
/* ============================
 * CONTACT SECTION STYLES
 * ============================ */

.vitalogs-contact-section {
    padding: 80px 20px;
    background-color: #f8f9ff;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

/* Left Side: Contact Info Block */
.contact-info-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-block h3 {
    font-size: 24px;
    color: #010F2B;
    margin-bottom: 15px;
}

.contact-info-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(133, 229, 2, 0.1) 0%, rgba(133, 229, 2, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #85E502;
}

.contact-detail-info h4 {
    font-size: 16px;
    color: #010F2B;
    margin: 0 0 5px 0;
}

.contact-detail-info p {
    margin: 0;
    font-size: 15px;
}
.contact-detail-info p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-detail-info p a:hover {
    color: #85E502;
}


.contact-social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf4;
    display: flex;
    gap: 15px;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #010F2B;
    background-color: #f0f2f5;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background-color: #85E502;
    color: #fff;
    transform: translateY(-3px);
}


/* Right Side: Contact Form */
.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #e8ecf4;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #f8f9ff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #85E502;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(133, 229, 2, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-submit {
    width: 100%;
    background: linear-gradient(135deg, #85E502 0%, #6ab301 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(133, 229, 2, 0.3);
}

/* Success & Error Messages */
.success-message, .error-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-block, .contact-form-container {
        padding: 30px;
    }
}
.vitalogs-section-header {
    text-align: center;
}
/* Wave Divider that breaks color sections */
.wave-section-break {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #010F2B;
    z-index: 10;
}

.wave-section-break svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    animation: waveFlow 12s linear infinite;
}

/* Primary wave with your brand colors */
.breaking-wave {
    fill: url(#breakingGradient);
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.1));
}

/* Smooth horizontal movement */
@keyframes waveFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient animation from dark to light */
@keyframes gradientShift {
    0% {
        y1: 0%;
        y2: 100%;
    }
    50% {
        y1: 10%;
        y2: 90%;
    }
    100% {
        y1: 0%;
        y2: 100%;
    }
}

.animated-gradient {
    animation: gradientShift 8s ease-in-out infinite;
}

/* Additional wave layers for depth */
.wave-layer-back {
    opacity: 0.6;
    animation-duration: 15s;
    animation-direction: reverse;
    transform: translateY(10px);
}

.wave-layer-front {
    opacity: 0.9;
    animation-duration: 8s;
    transform: translateY(-5px);
}

/* Responsive design */
@media (max-width: 768px) {
    .wave-section-break {
        height: 100px;
    }
    
    .wave-section-break svg {
        height: 100px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 20px;
    }
}

/* Performance optimization */
.wave-section-break {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
/* --- Style du Bouton WhatsApp Flottant --- */
.whatsapp-float {
    position: fixed; /* Le bouton reste fixe à l'écran */
    width: 60px;
    height: 60px;
    bottom: 30px; /* Distance du bas */
    right: 30px; /* Distance de la droite */
    background-color: #a8f542; /* Couleur officielle de WhatsApp */
    color: #FFF;
    border-radius: 50%; /* Forme circulaire */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Ombre portée */
    z-index: 1000; /* S'assure qu'il est au-dessus des autres éléments */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite; /* Animation pour attirer l'attention */
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Grossit légèrement au survol */
    animation: none; /* Arrête l'animation au survol */
}

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

/* Keyframes pour l'animation de pulsation */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(168, 245, 66, 0.7); /* Updated color */
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(168, 245, 66, 0); /* Updated color */
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(168, 245, 66, 0); /* Updated color */
    }
}