:root {
    --alvyo-primary: #1C50D8;
    --alvyo-secondary: #6c757d;
    --alvyo-success: #28a745;
    --alvyo-info: #17a2b8;
    --alvyo-warning: #ffc107;
    --alvyo-danger: #dc3545;
    --alvyo-light: #f8f9fa;
    --alvyo-dark: #343a40;
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #2D3436;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.mega-menu {
    min-width: 600px;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--alvyo-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-image {
    position: relative;
}

.hero-image:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle at center, rgba(28, 80, 216, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
}

/* Integration Cards */
.integration-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonial Cards */
.testimonial-card {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--alvyo-primary);
}

.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-tag .period {
    font-size: 1rem;
    color: var(--alvyo-secondary);
    font-weight: 400;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--alvyo-primary);
    border-color: var(--alvyo-primary);
}

.btn-primary:hover {
    background-color: #1745c0;
    border-color: #1745c0;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: #1a1f25;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.social-links a {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Animations */
.animate__fadeIn {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__delay-1s {
    animation-delay: 0.2s;
}

.animate__delay-2s {
    animation-delay: 0.4s;
}

.animate__delay-3s {
    animation-delay: 0.6s;
}
.fade-show {
    opacity: 1 !important;
    transition: opacity 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.0);
    }
}
/* Partner Cards */
.partner-card {
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion */
.accordion-button {
    padding: 1.5rem;
    font-weight: 500;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--alvyo-primary);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--alvyo-primary);
}

/* Case Studies */
.case-studies .card {
    transition: all 0.3s ease;
}

.case-studies .card:hover {
    transform: translateY(-5px);
}

.case-studies .card-img-top {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Newsletter Form */
.newsletter-form .form-control {
    padding: 0.75rem 1.5rem;
    border-radius: 8px 0 0 8px;
    border: none;
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* Trust Badges */
.trust-badges img {
    height: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    opacity: 1;
}
