/* Sticky navbar styles */
.header-version-1 {
    transition: all 0.3s ease;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease forwards;
}

/* Ensure proper spacing for when header becomes sticky */
.sticky-header-spacer {
    display: none;
}

.has-sticky-header .sticky-header-spacer {
    display: block;
}

/* Ensure mobile menu works correctly with sticky header */
.sticky-header .elementskit-menu-container {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

/* Animation for sticky header appearance */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
    .sticky-header .e-con-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Pricing section styles */
.elementor-element-63fc1f2 .e-con-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.elementor-element-89a3722 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 50px !important;
    text-align: center !important;
    width: 100% !important;
}

.elementor-element-3ebb303 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 20px !important;
    width: 100% !important;
}

.elementor-element-3ebb303 .pricing-item {
    flex: 1 1 calc(33.333% - 20px) !important;
    width: calc(33.333% - 20px) !important;
    max-width: calc(33.333% - 20px) !important;
}

/* Responsive pricing adjustments */
@media (max-width: 768px) {
    .elementor-element-3ebb303 {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .elementor-element-3ebb303 .pricing-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}